From 77cb0c1da20e8f5a724b8841fc6cf421ade1fab1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Sat, 16 Sep 2023 00:17:13 +0000 Subject: [PATCH] ConfigView luxon date formatting --- ui/src/components/admin/ConfigView.vue | 40 +++++++++++++++----------- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/ui/src/components/admin/ConfigView.vue b/ui/src/components/admin/ConfigView.vue index 25380a8..6550ea8 100644 --- a/ui/src/components/admin/ConfigView.vue +++ b/ui/src/components/admin/ConfigView.vue @@ -21,16 +21,16 @@
Erstes Türchen
-
{{ config_model.puzzle.first }}
+
{{ fmt_puzzle_date("first") }}
Nächstes Türchen
-
{{ config_model.puzzle.next }}
+
{{ fmt_puzzle_date("next") }}
Letztes Türchen
-
{{ config_model.puzzle.last }}
+
{{ fmt_puzzle_date("last") }}
Rätsel schließt nach
-
{{ config_model.puzzle.end }}
+
{{ fmt_puzzle_date("end") }}
Zufalls-Seed
@@ -125,6 +125,7 @@