Skip to content

Commit

Permalink
fix(UI): Fix NcRichText usage
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Nov 14, 2023
1 parent 3eefb1e commit ce6306a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Components/Notification.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@
</a>
<a v-else-if="useLink" :href="link" class="notification-subject full-subject-link">
<span v-if="icon" class="image"><img :src="icon" class="notification-icon" alt=""></span>
<RichText v-if="subjectRich"
<NcRichText v-if="subjectRich"
:text="subjectRich"
:arguments="preparedSubjectParameters" />
<span v-else class="subject">{{ subject }}</span>
</a>
<div v-else class="notification-subject">
<span v-if="icon" class="image"><img :src="icon" class="notification-icon" alt=""></span>
<RichText v-if="subjectRich"
<NcRichText v-if="subjectRich"
:text="subjectRich"
:arguments="preparedSubjectParameters" />
<span v-else class="subject">{{ subject }}</span>
Expand Down

0 comments on commit ce6306a

Please sign in to comment.