@globalbrain/sefirot 4.43.0 → 4.43.2
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.
|
@@ -445,6 +445,12 @@ defineExpose({
|
|
|
445
445
|
@reset-selection="onResetSelection"
|
|
446
446
|
@toggle-conditions="hideConditions = !hideConditions"
|
|
447
447
|
>
|
|
448
|
+
<template v-if="$slots['controls-main-left']" #main-left>
|
|
449
|
+
<slot name="controls-main-left" />
|
|
450
|
+
</template>
|
|
451
|
+
<template v-if="$slots['controls-main-right']" #main-right>
|
|
452
|
+
<slot name="controls-main-right" />
|
|
453
|
+
</template>
|
|
448
454
|
<template v-if="$slots['controls-sub-left']" #sub-left>
|
|
449
455
|
<slot name="controls-sub-left" />
|
|
450
456
|
</template>
|
package/lib/composables/Error.ts
CHANGED
|
@@ -214,7 +214,9 @@ export function useErrorHandler({
|
|
|
214
214
|
userValue = null
|
|
215
215
|
}
|
|
216
216
|
|
|
217
|
-
|
|
217
|
+
const status = e?.statusCode || e?.cause?.status || e?.cause?.statusCode
|
|
218
|
+
|
|
219
|
+
if (![403, 404].includes(status)) {
|
|
218
220
|
const $ = instance && instance.$
|
|
219
221
|
const metadata = $ && {
|
|
220
222
|
componentName: formatComponentName($),
|