adminforth 1.5.5-next.2 → 1.5.5-next.3

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.
@@ -325,7 +325,7 @@ function humanizeSnake(str: string): string {
325
325
  return str.split('_').map((word) => word.charAt(0).toUpperCase() + word.slice(1)).join(' ');
326
326
  }
327
327
 
328
- watch([route, () => coreStore.resourceById], async () => {
328
+ watch([route, () => coreStore.resourceById, () => coreStore.config], async () => {
329
329
  handleCustomLayout()
330
330
  await new Promise((resolve) => setTimeout(resolve, 0));
331
331
  let firstParam: string | null | string[] = Object.values(route.params)[0];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "1.5.5-next.2",
3
+ "version": "1.5.5-next.3",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",