@finema/finework-layer 0.2.52 → 0.2.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
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.53](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.52...0.2.53) (2025-11-11)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* hide icon breadcrumb ([445bf0d](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/445bf0d823e8f57423d0be4a48ef38e891707a8d))
|
|
8
|
+
|
|
3
9
|
## [0.2.52](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.51...0.2.52) (2025-11-11)
|
|
4
10
|
|
|
5
11
|
### Bug Fixes
|
|
@@ -207,6 +207,10 @@ const userMenuItems: DropdownMenuItem[] = [
|
|
|
207
207
|
const breadcrumbsItems = computed(() => {
|
|
208
208
|
const list = app.pageMeta.breadcrumbs || []
|
|
209
209
|
if (!list.length) return []
|
|
210
|
+
const extra = list.map((item: any) => ({
|
|
211
|
+
...item,
|
|
212
|
+
icon: '',
|
|
213
|
+
}))
|
|
210
214
|
|
|
211
215
|
return [
|
|
212
216
|
{
|
|
@@ -214,7 +218,7 @@ const breadcrumbsItems = computed(() => {
|
|
|
214
218
|
icon: 'ph:house-line',
|
|
215
219
|
to: props.rootAppPath || '/',
|
|
216
220
|
},
|
|
217
|
-
...
|
|
221
|
+
...extra,
|
|
218
222
|
]
|
|
219
223
|
})
|
|
220
224
|
</script>
|