Latest Version

This commit is contained in:
MarcWieland
2026-08-05 18:51:37 +02:00
parent de3bce8dcc
commit 3600036833
29 changed files with 3932 additions and 849 deletions
+2 -14
View File
@@ -406,22 +406,10 @@ export const ScheduleItemModal: React.FC<ScheduleItemModalProps> = ({
<button
type="submit"
disabled={isSaving}
style={{
padding: '10px 20px',
borderRadius: '8px',
border: 'none',
backgroundColor: '#2563eb',
color: '#ffffff',
fontWeight: 600,
cursor: isSaving ? 'not-allowed' : 'pointer',
display: 'flex',
alignItems: 'center',
gap: '8px',
opacity: isSaving ? 0.7 : 1
}}
className="btn-primary-cta"
>
<Save size={18} />
{isSaving ? 'Speichert...' : 'Einsatz speichern'}
<span>{isSaving ? 'Speichert...' : 'Einsatz Speichern'}</span>
</button>
</div>
</form>