From 2818666a1a1c22830cde1f925c75230f511ce808 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 16 Mar 2023 19:42:33 +0100 Subject: [PATCH] :paperclip: Fix minnor cosmetic issue on instant and duration pretty printing --- backend/src/app/util/time.clj | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/backend/src/app/util/time.clj b/backend/src/app/util/time.clj index a2cd237adf..69d401efaf 100644 --- a/backend/src/app/util/time.clj +++ b/backend/src/app/util/time.clj @@ -128,7 +128,8 @@ (extend-protocol fez/IEdn Duration - (-edn [o] (pr-str o))) + (-edn [o] + (tagged-literal 'app/duration (str o)))) (defn format-duration [o] @@ -218,7 +219,7 @@ (extend-protocol fez/IEdn Instant - (-edn [o] (pr-str o))) + (-edn [o] (tagged-literal 'app/instant (format-instant o)))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Cron Expression