fix: SaveViewDialog speichern button template literal className fix
This commit is contained in:
@@ -131,10 +131,10 @@ export function SaveViewDialog({ open, onClose, onSave, hasFilter, hasGroup, has
|
|||||||
<button
|
<button
|
||||||
onClick={handleSave}
|
onClick={handleSave}
|
||||||
disabled={!name.trim()}
|
disabled={!name.trim()}
|
||||||
className="
|
className={`
|
||||||
inline-flex items-center gap-1.5 px-3 py-1.5 text-sm font-medium text-white rounded-md transition-colors
|
inline-flex items-center gap-1.5 px-3 py-1.5 text-sm font-medium rounded-md transition-colors
|
||||||
${name.trim() ? 'bg-primary-600 hover:bg-primary-700' : 'bg-secondary-300 cursor-not-allowed'}
|
${name.trim() ? 'bg-primary-600 text-white hover:bg-primary-700' : 'bg-secondary-200 text-secondary-400 cursor-not-allowed'}
|
||||||
"
|
`}
|
||||||
>
|
>
|
||||||
<Check className="w-4 h-4" strokeWidth={2} />
|
<Check className="w-4 h-4" strokeWidth={2} />
|
||||||
Speichern
|
Speichern
|
||||||
|
|||||||
Reference in New Issue
Block a user