@finema/finework-layer 1.0.5 → 1.0.7
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 +12 -0
- package/app/components/PortalApp.vue +1 -1
- package/app/constants/routes.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.7](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.6...1.0.7) (2026-03-06)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* correct casing for eFactoring route in PortalApp.vue ([3751d1a](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/3751d1a8cc833e2a03cf27715c3770bbffb98181))
|
|
8
|
+
|
|
9
|
+
## [1.0.6](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.5...1.0.6) (2026-03-06)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* correct casing for eFactoring route in routes.ts ([8549338](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/85493382fa53c8af3cff11bc80250f6f7dd4ca30))
|
|
14
|
+
|
|
3
15
|
## [1.0.5](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.4...1.0.5) (2026-03-06)
|
|
4
16
|
|
|
5
17
|
### Bug Fixes
|
|
@@ -393,7 +393,7 @@ const financeApps = computed(() => [
|
|
|
393
393
|
logo: '/admin/efactoring.png',
|
|
394
394
|
label: 'eFactoring',
|
|
395
395
|
description: 'การเบิกเงินหมุนเวียนกับธนาคาร',
|
|
396
|
-
to: routes.
|
|
396
|
+
to: routes.eFactoring.dashboard.to,
|
|
397
397
|
status: StatusPortal.ACTIVE,
|
|
398
398
|
},
|
|
399
399
|
]
|
package/app/constants/routes.ts
CHANGED