We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b74b0e8 commit 08bd858Copy full SHA for 08bd858
adminforth/spa/src/components/BreadcrumbsWithButtons.vue
@@ -6,9 +6,15 @@
6
<slot></slot>
7
</div>
8
9
-
10
- <div class="absolute inset-0 z-50 bg-white " v-if="coreStore.resourceColumnsError">
11
- <PageNotFound/>
+ <div class="flex items-center justify-between mb-3 flex-wrap gap-y-2 gap-2" v-if="coreStore.resourceColumnsError">
+ <div class="p-4 mb-4 text-sm text-red-800 rounded-lg bg-red-50 dark:bg-gray-800 dark:text-red-400" role="alert">
+ <span class="font-medium">{{ $t('Error!') }}</span>
12
+ {{ coreStore.resourceColumnsError }}
13
+ </div>
14
15
+
16
+ <div class="absolute inset-0 z-50 bg-white " v-if="coreStore.resourceColumnsError?.includes('not found')">
17
+ <PageNotFound />
18
19
20
0 commit comments