fix double click select issue #2609

pull/2640/head
Mikael Finstad 9 months ago
parent 251113a9c7
commit 25111307d7
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

@ -23,8 +23,8 @@ import { DialogButton } from './components/Button';
import getSwal from './swal'; import getSwal from './swal';
const buttonBaseStyle = { const buttonBaseStyle: CSSProperties = {
margin: '0 3px', borderRadius: 3, color: 'white', cursor: 'pointer', margin: '0 3px', borderRadius: 3, color: 'white', cursor: 'pointer', userSelect: 'none',
}; };
const disabledButtonStyle = { color: 'var(--gray-10)', backgroundColor: 'var(--gray-6)' }; const disabledButtonStyle = { color: 'var(--gray-10)', backgroundColor: 'var(--gray-6)' };

Loading…
Cancel
Save