Skip to content

Commit

Permalink
Merge branch 'daniel-schwartz-k:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
danielschwartz85 authored Feb 1, 2024
2 parents 3536347 + 6b84024 commit 02b6ed7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/secret/secretInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function TextWithSave(props: ITextWithSaveProps) {
{value && (
<IconButton
aria-label="save secret"
onClick={handleClickSaveIcon}
onMouseDownCapture={handleClickSaveIcon}
onMouseDown={handleMouseDownSave}
edge="end"
sx={{ mr: -4 }}
Expand Down
2 changes: 1 addition & 1 deletion src/components/themeIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function ThemeIcon(props: IThemeIconProps) {
<IconButton
aria-label="delete"
sx={(them) => ({ position: 'absolute', top: them.spacing(3), right: them.spacing(3) })}
onClick={onClick}
onMouseDown={onClick}
>
{isDarkMode ? <WbSunnyOutlined color="secondary" /> : <DarkModeOutlined />}
</IconButton>
Expand Down

0 comments on commit 02b6ed7

Please sign in to comment.