@apptegy/nuxt-navigation 0.1.123 → 0.1.124
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -117,11 +117,13 @@
|
|
|
117
117
|
>{{ emoji }}</span>
|
|
118
118
|
</span>
|
|
119
119
|
<span class="notification-item__summary-on">
|
|
120
|
-
{{ $t("navigation.notificationsPanel.summaryOn") }}
|
|
120
|
+
{{ " " }}{{ $t("navigation.notificationsPanel.summaryOn") }}{{ " " }}
|
|
121
121
|
</span>
|
|
122
|
-
{{ " " }}
|
|
123
122
|
</template>
|
|
124
|
-
<span class="notification-item__summary-text">
|
|
123
|
+
<span class="notification-item__summary-text">
|
|
124
|
+
<template v-if="reactionEmojis.length">"{{ item.summary }}"</template>
|
|
125
|
+
<template v-else>{{ item.summary }}</template>
|
|
126
|
+
</span>
|
|
125
127
|
</div>
|
|
126
128
|
</div>
|
|
127
129
|
</template>
|
|
@@ -366,6 +368,7 @@ function handleDismiss(event) {
|
|
|
366
368
|
line-height: 1;
|
|
367
369
|
}
|
|
368
370
|
.notification-item__summary-on {
|
|
371
|
+
margin-inline: 0.25em;
|
|
369
372
|
color: var(--grey-50, #747474);
|
|
370
373
|
}
|
|
371
374
|
.notification-item__summary-text {
|