@finema/finework-layer 2.0.42 → 2.0.44
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.44](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.43...2.0.44) (2026-08-20)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* fix notification avatar visibility logic and update setting notification icon ([d7f9ef8](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/d7f9ef821268c6ab538b593d4702d045aa00e355))
|
|
8
|
+
|
|
9
|
+
## [2.0.43](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.42...2.0.43) (2026-08-20)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* add feedback ticket notification avatar support ([a1d4f86](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/a1d4f86e2f261ea6e6088a0b3f8c7caf90620719))
|
|
14
|
+
|
|
3
15
|
## [2.0.42](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.41...2.0.42) (2026-08-20)
|
|
4
16
|
|
|
5
17
|
### Features
|
|
@@ -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
|
|
@@ -239,7 +240,7 @@ const getImage = (item: INotificationItem): string | null => {
|
|
|
239
240
|
} else if (item.source_type?.startsWith('CLOCKIN')) {
|
|
240
241
|
return `/admin/clockin-logo.png`
|
|
241
242
|
} else if (item.source_type?.startsWith('SETTING')) {
|
|
242
|
-
return `/admin/
|
|
243
|
+
return `/admin/super-admin-logo.png`
|
|
243
244
|
} else if (item.source_type?.startsWith('NEWSLETTER')) {
|
|
244
245
|
return `/admin/newsletter.png`
|
|
245
246
|
} else if (item.source_type?.startsWith('TODO')) {
|
|
@@ -252,6 +253,8 @@ const getImage = (item: INotificationItem): string | null => {
|
|
|
252
253
|
return `/admin/request.png`
|
|
253
254
|
} else if (item.source_type?.startsWith('RECRUIT')) {
|
|
254
255
|
return `/admin/recruit.png`
|
|
256
|
+
} else if (item.source_type?.startsWith('SETTING_FEEDBACK_TICKET')) {
|
|
257
|
+
return `/admin/super-admin-logo.png`
|
|
255
258
|
}
|
|
256
259
|
|
|
257
260
|
return null
|