@finema/finework-layer 0.2.120 → 0.2.121
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 +6 -0
- package/app/components/Notifications/index.vue +2 -2
- package/bun.lock +622 -894
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.121](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.120...0.2.121) (2026-02-02)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* update TODO link handling for TODO_REMOVE_CARD and TODO_ASSIGN_BOARD action types ([27a9d6d](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/27a9d6df5f3aef2dc786cece3b2a3e6e80d930d1))
|
|
8
|
+
|
|
3
9
|
## [0.2.120](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.119...0.2.120) (2026-02-02)
|
|
4
10
|
|
|
5
11
|
### Bug Fixes
|
|
@@ -111,9 +111,9 @@ const getLink = (item: INotificationItem) => {
|
|
|
111
111
|
return `/announcement/${item.source_id}`
|
|
112
112
|
} else if (item.source_type === 'TODO' && item.action_type === 'TODO_ASSIGN_CARD') {
|
|
113
113
|
return `/todo/boards/${item.data?.todo_board_slug}/cards/${item.data?.todo_slug}`
|
|
114
|
-
} else if (item.source_type === 'TODO' && item.action_type === 'TODO_ASSIGN_BOARD') {
|
|
114
|
+
} else if (item.source_type === 'TODO' && (item.action_type === 'TODO_REMOVE_CARD' || item.action_type === 'TODO_ASSIGN_BOARD')) {
|
|
115
115
|
return `/todo/boards/${item.data?.todo_board_slug}`
|
|
116
|
-
} else if (item.source_type === 'TODO' &&
|
|
116
|
+
} else if (item.source_type === 'TODO' && item.action_type === 'TODO_REMOVE_BOARD') {
|
|
117
117
|
return `/todo/cards`
|
|
118
118
|
}
|
|
119
119
|
|