@finema/finework-layer 2.0.59 → 2.0.61
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,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.61](https://gitlab.finema.co/finema/internal/finework/compare/2.0.60...2.0.61) (2026-09-11)
|
|
4
|
+
|
|
5
|
+
## [2.0.60](https://gitlab.finema.co/finema/internal/finework/compare/2.0.59...2.0.60) (2026-09-11)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* link ([2cb45df](https://gitlab.finema.co/finema/internal/finework/commit/2cb45df386ac88b879b004e9fb3ed10294328490))
|
|
10
|
+
|
|
3
11
|
## [2.0.59](https://gitlab.finema.co/finema/internal/finework/compare/2.0.58...2.0.59) (2026-09-09)
|
|
4
12
|
|
|
5
13
|
### Features
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<Separator />
|
|
39
39
|
<NuxtLink
|
|
40
40
|
:to="getLink(item)"
|
|
41
|
-
:target="getLink(item) === '
|
|
41
|
+
:target="getLink(item) === '/' ? '_self' : '_blank'"
|
|
42
42
|
:class="['flex cursor-pointer items-start gap-2 rounded-lg p-4 hover:bg-gray-100']"
|
|
43
43
|
>
|
|
44
44
|
<!-- <Chip
|
|
@@ -131,7 +131,7 @@ const getLink = (item: INotificationItem) => {
|
|
|
131
131
|
return `/todo/cards`
|
|
132
132
|
|
|
133
133
|
default:
|
|
134
|
-
return '
|
|
134
|
+
return '/'
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
137
|
|
|
@@ -149,7 +149,7 @@ const getLink = (item: INotificationItem) => {
|
|
|
149
149
|
case 'REQUEST_ACKNOWLEDGED':
|
|
150
150
|
return `/request/acknowledged/${item.data?.request_slug}`
|
|
151
151
|
default:
|
|
152
|
-
return '
|
|
152
|
+
return '/'
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
|
|
@@ -165,7 +165,7 @@ const getLink = (item: INotificationItem) => {
|
|
|
165
165
|
case 'EVALUATION_ANNUAL_REMINDER':
|
|
166
166
|
return `/evaluation/annuals/${item.source_id}/submission`
|
|
167
167
|
default:
|
|
168
|
-
return '
|
|
168
|
+
return '/'
|
|
169
169
|
}
|
|
170
170
|
}
|
|
171
171
|
|
|
@@ -201,7 +201,7 @@ const getLink = (item: INotificationItem) => {
|
|
|
201
201
|
return `/cost-sheet/doc/${costSheetDocID}/debt/${sourceID}`
|
|
202
202
|
|
|
203
203
|
default:
|
|
204
|
-
return '
|
|
204
|
+
return '/'
|
|
205
205
|
}
|
|
206
206
|
}
|
|
207
207
|
|
|
@@ -212,7 +212,7 @@ const getLink = (item: INotificationItem) => {
|
|
|
212
212
|
return `/recruit/interview-reviews/${item.source_id}`
|
|
213
213
|
|
|
214
214
|
default:
|
|
215
|
-
return '
|
|
215
|
+
return '/'
|
|
216
216
|
}
|
|
217
217
|
}
|
|
218
218
|
|
|
@@ -224,7 +224,7 @@ const getLink = (item: INotificationItem) => {
|
|
|
224
224
|
return `/feedback/tickets/${item.source_id}`
|
|
225
225
|
|
|
226
226
|
default:
|
|
227
|
-
return '
|
|
227
|
+
return '/'
|
|
228
228
|
}
|
|
229
229
|
}
|
|
230
230
|
|
|
@@ -244,12 +244,12 @@ const getLink = (item: INotificationItem) => {
|
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
default:
|
|
247
|
-
return '
|
|
247
|
+
return '/'
|
|
248
248
|
}
|
|
249
249
|
}
|
|
250
250
|
|
|
251
251
|
default:
|
|
252
|
-
return '
|
|
252
|
+
return '/'
|
|
253
253
|
}
|
|
254
254
|
}
|
|
255
255
|
|