Skip to content

Commit

Permalink
vrt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
carkom committed Jan 18, 2024
1 parent d2ea2e0 commit bc62517
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
10 changes: 8 additions & 2 deletions packages/desktop-client/src/components/common/MenuButton.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
// @ts-strict-ignore
import React from 'react';

import { SvgDotsHorizontalTriple } from '../../icons/v1';
import { type CSSProperties } from '../../style';

import { Button } from './Button';

export function MenuButton({ onClick, style }) {
export function MenuButton({
onClick,
style,
}: {
onClick: () => void;
style?: CSSProperties;
}) {
return (
<Button type="bare" onClick={onClick} aria-label="Menu" style={style}>
<SvgDotsHorizontalTriple
Expand Down
1 change: 0 additions & 1 deletion packages/desktop-client/src/components/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ export function Cell({
alignItems: 'center',
...styles.smallText,
...valueStyle,
...style,
}}
// Can't use click because we only want to expose the cell if
// the user does a direct click, not if they also drag the
Expand Down

0 comments on commit bc62517

Please sign in to comment.