From da52a9300f6d04c18d9ed1f40d76145cbb0de002 Mon Sep 17 00:00:00 2001 From: silverwind Date: Tue, 28 Oct 2025 18:28:04 +0100 Subject: [PATCH] omit null --- web_src/js/components/ContextPopup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_src/js/components/ContextPopup.vue b/web_src/js/components/ContextPopup.vue index 3e1ff305c6..cf157461e8 100644 --- a/web_src/js/components/ContextPopup.vue +++ b/web_src/js/components/ContextPopup.vue @@ -13,7 +13,7 @@ const props = defineProps<{ const loading = shallowRef(false); const issue = shallowRef(null); const renderedLabels = shallowRef(''); -const errorMessage = shallowRef(null); +const errorMessage = shallowRef(null); const createdAt = computed(() => { return new Date(issue.value.created_at).toLocaleDateString(undefined, {year: 'numeric', month: 'short', day: 'numeric'});