Skip to content
Snippets Groups Projects
Commit b44c1368 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

fix: make sure fallback title can be distinguished from actual title

parent 2b564e8f
No related branches found
No related tags found
No related merge requests found
Pipeline #7615 passed
......@@ -28,8 +28,8 @@
</div>
<span class="tw-truncate tw-max-w-[200px]">
<template v-if="!isLoadingNote">
<template v-if="note">
{{ note.title || t('noneSetMasculine') }}
<template v-if="note?.title">
{{ note.title }}
</template>
<span v-else class="tw-text-sm tw-text-gray-500">
{{ t('noneSetMasculine') }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment