Skip to content

Commit da52a93

Browse files
committed
omit null
1 parent 62fb4ca commit da52a93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web_src/js/components/ContextPopup.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const props = defineProps<{
1313
const loading = shallowRef<boolean>(false);
1414
const issue = shallowRef<Issue>(null);
1515
const renderedLabels = shallowRef<string>('');
16-
const errorMessage = shallowRef<string | null>(null);
16+
const errorMessage = shallowRef<string>(null);
1717
1818
const createdAt = computed(() => {
1919
return new Date(issue.value.created_at).toLocaleDateString(undefined, {year: 'numeric', month: 'short', day: 'numeric'});

0 commit comments

Comments
 (0)