diff --git a/package.json b/package.json
index 3bb321d..a772660 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "my-weekly-todo-list",
- "version": "1.74.3",
+ "version": "1.74.4",
"description": "A web-based weekly task management application that organizes to-dos and calendar events in a single, intuitive weekly view",
"main": "index.js",
"scripts": {
diff --git a/src/components/CalendarEventModal.tsx b/src/components/CalendarEventModal.tsx
index e8bf6a7..7f4737c 100644
--- a/src/components/CalendarEventModal.tsx
+++ b/src/components/CalendarEventModal.tsx
@@ -6,6 +6,26 @@ import { faServer } from '@fortawesome/free-solid-svg-icons';
const RichTextEditor = lazy(() => import('./RichTextEditor'));
+function AnimatedDots() {
+ return (
+
+ ...
+
+
+ );
+}
+
// Reminder preset options (minutes)
const REMINDER_OPTIONS = [
{ label: 'None', value: -1 },
@@ -908,7 +928,7 @@ export default function CalendarEventModal({
boxShadow: '0 1px 3px rgba(0,0,0,0.1)',
}}
>
- {isSaving ? (language === 'de' ? 'Erstelle...' : 'Creating...') : (language === 'de' ? 'Speichern' : 'Save')}
+ {isSaving ? <>{language === 'de' ? 'Erstelle' : 'Creating'}> : (language === 'de' ? 'Speichern' : 'Save')}
@@ -975,7 +995,7 @@ export default function CalendarEventModal({
borderRadius: 8, cursor: 'pointer',
opacity: isSaving ? 0.6 : 1,
boxShadow: '0 1px 3px rgba(0,0,0,0.1)',
- }}>{isSaving ? (language === 'de' ? 'Erstelle...' : 'Creating...') : (language === 'de' ? 'Speichern' : 'Save')}
+ }}>{isSaving ? <>{language === 'de' ? 'Erstelle' : 'Creating'}> : (language === 'de' ? 'Speichern' : 'Save')}