Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mantinedev/mantine
Browse files Browse the repository at this point in the history
  • Loading branch information
rtivital committed May 2, 2024
2 parents 9611f4c + 207aad0 commit a9e13ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
color: var(--input-placeholder-color);
opacity: 1;
}

&::-ms-reveal {
display: none;
}
}

.visibilityToggle {
Expand Down
2 changes: 1 addition & 1 deletion packages/@mantine/hooks/src/use-hash/use-hash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function useHash({ getInitialValueInEffect = true }: UseHashOptions = {})
useWindowEvent('hashchange', () => {
const newHash = window.location.hash;
if (hash !== newHash) {
setHashValue(hash);
setHashValue(newHash);
}
});

Expand Down

0 comments on commit a9e13ec

Please sign in to comment.