@finema/finework-layer 2.0.52 → 2.0.53
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/PortalApp.vue +0 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.53](https://gitlab.finema.co/finema/internal/finework/compare/2.0.52...2.0.53) (2026-08-31)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* layer duplicate ([1a8d84e](https://gitlab.finema.co/finema/internal/finework/commit/1a8d84e5c11d1de606b33fc5423d43129cb08271))
|
|
8
|
+
|
|
3
9
|
## [2.0.52](https://gitlab.finema.co/finema/internal/finework/compare/2.0.51...2.0.52) (2026-08-31)
|
|
4
10
|
|
|
5
11
|
### Features
|
|
@@ -207,12 +207,6 @@ const dailyApps = computed<IPortalApp[]>(() => [
|
|
|
207
207
|
toApp(UserModule.TIMESHEET, routes.timesheet.home.to, 'บันทึกงานที่ทำในแต่ละวัน'),
|
|
208
208
|
toApp(UserModule.TODO, routes.todo.dashboard.to, 'ระบบจัดการงาน'),
|
|
209
209
|
toApp(UserModule.REQUEST, routes.request.myRequest.requests.to, 'ระบบขอ ลา เบิก อนุมัติรายการต่างๆ'),
|
|
210
|
-
...(can(UserModule.CHECKIN, ...USER_ADMIN_SUPER)
|
|
211
|
-
? [toApp(UserModule.CHECKIN, routes.clockin.home.to, 'เช็กอินเวลางาน และเลือกสถานที่ทำงาน')]
|
|
212
|
-
: []),
|
|
213
|
-
toApp(UserModule.TIMESHEET, routes.timesheet.home.to, 'บันทึกงานที่ทำในแต่ละวัน'),
|
|
214
|
-
toApp(UserModule.TODO, routes.todo.dashboard.to, 'ระบบจัดการงาน'),
|
|
215
|
-
toApp(UserModule.REQUEST, routes.request.myRequest.requests.to, 'ระบบขอ ลา เบิก อนุมัติรายการต่างๆ'),
|
|
216
210
|
])
|
|
217
211
|
|
|
218
212
|
const managementApps = computed<IPortalApp[]>(() => [
|