@finema/finework-layer 0.2.116 → 0.2.117
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,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.117](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.116...0.2.117) (2026-01-29)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* add image handling for TODO, EVALUATION, and COSTSHEET notification types ([175f929](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/175f929981b6bda7ac9c4c4b5fd0dc79bedfb476))
|
|
8
|
+
|
|
3
9
|
## [0.2.116](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.115...0.2.116) (2026-01-28)
|
|
4
10
|
|
|
5
11
|
## [0.2.115](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.114...0.2.115) (2026-01-27)
|
|
@@ -125,6 +125,12 @@ const getImage = (item: INotificationItem): string | null => {
|
|
|
125
125
|
return `/admin/setting-logo.png`
|
|
126
126
|
} else if (item.source_type?.startsWith('NEWSLETTER')) {
|
|
127
127
|
return `/admin/newsletter.png`
|
|
128
|
+
} else if (item.source_type?.startsWith('TODO')) {
|
|
129
|
+
return `/admin/todo.png`
|
|
130
|
+
} else if (item.source_type?.startsWith('EVALUATION')) {
|
|
131
|
+
return `/admin/evaluation.png`
|
|
132
|
+
} else if (item.source_type?.startsWith('COSTSHEET')) {
|
|
133
|
+
return `/admin/cost-sheet.png`
|
|
128
134
|
}
|
|
129
135
|
|
|
130
136
|
return null
|