@finema/finework-layer 2.0.41 → 2.0.43
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.43](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.42...2.0.43) (2026-08-20)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add feedback ticket notification avatar support ([a1d4f86](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/a1d4f86e2f261ea6e6088a0b3f8c7caf90620719))
|
|
8
|
+
|
|
9
|
+
## [2.0.42](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.41...2.0.42) (2026-08-20)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* update bookmark link styling and add feedback ticket notification routing ([48b6192](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/48b6192c44ad19e58d83956a6a5f7d5d27a8992b))
|
|
14
|
+
|
|
3
15
|
## [2.0.41](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.40...2.0.41) (2026-08-20)
|
|
4
16
|
|
|
5
17
|
### Features
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
<div class="mt-4 flex items-center justify-between gap-2">
|
|
118
118
|
<NuxtLink
|
|
119
119
|
:to="routes.account.bookmarks.to"
|
|
120
|
-
class="text-primary text-sm font-bold
|
|
120
|
+
class="text-primary text-sm font-bold underline"
|
|
121
121
|
@click="isOpen = false"
|
|
122
122
|
>
|
|
123
123
|
View all bookmarks
|
|
@@ -48,7 +48,8 @@
|
|
|
48
48
|
:color="getNotificationColor(item)"
|
|
49
49
|
> -->
|
|
50
50
|
<div
|
|
51
|
-
v-if="item.actor?.avatar_url
|
|
51
|
+
v-if="item.actor?.avatar_url
|
|
52
|
+
|| (item.source_type !== 'NEWSLETTER' && item.source_type !== 'SETTING_FEEDBACK_TICKET')"
|
|
52
53
|
class="relative"
|
|
53
54
|
>
|
|
54
55
|
<Avatar
|
|
@@ -214,6 +215,18 @@ const getLink = (item: INotificationItem) => {
|
|
|
214
215
|
}
|
|
215
216
|
}
|
|
216
217
|
|
|
218
|
+
case 'SETTING_FEEDBACK_TICKET':
|
|
219
|
+
{
|
|
220
|
+
switch (item.action_type) {
|
|
221
|
+
case 'FEEDBACK_TICKET_RESOLVED':
|
|
222
|
+
case 'FEEDBACK_TICKET_CLOSED':
|
|
223
|
+
return `/feedback/tickets/${item.source_id}`
|
|
224
|
+
|
|
225
|
+
default:
|
|
226
|
+
return '#'
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
217
230
|
default:
|
|
218
231
|
return '#'
|
|
219
232
|
}
|
|
@@ -240,6 +253,8 @@ const getImage = (item: INotificationItem): string | null => {
|
|
|
240
253
|
return `/admin/request.png`
|
|
241
254
|
} else if (item.source_type?.startsWith('RECRUIT')) {
|
|
242
255
|
return `/admin/recruit.png`
|
|
256
|
+
} else if (item.source_type?.startsWith('SETTING_FEEDBACK_TICKET')) {
|
|
257
|
+
return `/admin/super-admin-logo.png`
|
|
243
258
|
}
|
|
244
259
|
|
|
245
260
|
return null
|