fix disabled button take 2
This commit is contained in:
parent
a5641aef03
commit
5de40b6bf5
1 changed files with 2 additions and 3 deletions
|
|
@ -142,9 +142,8 @@ export function MiniRepl({
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
className={cx(
|
className={cx(
|
||||||
isDirty
|
'w-16 flex items-center justify-center p-1 text-foreground border-lineHighlight bg-lineHighlight',
|
||||||
? 'cursor-pointer w-16 flex items-center justify-center p-1 text-foreground bg-lineHighlight hover:bg-background'
|
isDirty ? 'text-foreground hover:bg-background cursor-pointer' : 'opacity-50 cursor-not-allowed',
|
||||||
: 'w-16 flex items-center justify-center p-1 opacity-50 cursor-not-allowed bg-lineHighlight',
|
|
||||||
)}
|
)}
|
||||||
onClick={() => activateCode()}
|
onClick={() => activateCode()}
|
||||||
>
|
>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue