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
|
||||
onClick={handleSave}
|
||||
disabled={!name.trim()}
|
||||
className="
|
||||
inline-flex items-center gap-1.5 px-3 py-1.5 text-sm font-medium text-white rounded-md transition-colors
|
||||
${name.trim() ? 'bg-primary-600 hover:bg-primary-700' : 'bg-secondary-300 cursor-not-allowed'}
|
||||
"
|
||||
className={`
|
||||
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 text-white hover:bg-primary-700' : 'bg-secondary-200 text-secondary-400 cursor-not-allowed'}
|
||||
`}
|
||||
>
|
||||
<Check className="w-4 h-4" strokeWidth={2} />
|
||||
Speichern
|
||||
|
||||
Reference in New Issue
Block a user