Skip to content

Commit 91ed122

Browse files
chore: show dimenstion value on hover
Signed-off-by: Henry Gressmann <[email protected]>
1 parent dc63054 commit 91ed122

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/src/components/dimensions/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,11 @@ const DimensionValueButton = ({
173173
children,
174174
onSelect,
175175
}: {
176-
children: React.ReactNode;
176+
children: string;
177177
onSelect?: () => void;
178178
}) => (
179179
<button type="button" className={styles.dimensionItemSelect} onClick={onSelect}>
180-
<span>{children}</span>
180+
<span title={children}>{children}</span>
181181
</button>
182182
);
183183

0 commit comments

Comments
 (0)