This commit is contained in:
@@ -5,19 +5,20 @@
|
|||||||
<v-card-subtitle class="mt-1">{{ titleText() }}</v-card-subtitle>
|
<v-card-subtitle class="mt-1">{{ titleText() }}</v-card-subtitle>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
<template v-if="errorObj.length > 0">
|
<template v-if="errorObj.length > 0">
|
||||||
|
<div class="mt-4 mb-8">
|
||||||
|
<v-icon large color="error">$ayiExclamationTriangle</v-icon>
|
||||||
<v-data-table
|
<v-data-table
|
||||||
|
dense
|
||||||
:headers="headers"
|
:headers="headers"
|
||||||
:items="errorObj"
|
:items="errorObj"
|
||||||
class="elevation-1"
|
class="elevation-4"
|
||||||
:disable-pagination="true"
|
:disable-pagination="true"
|
||||||
:disable-filtering="true"
|
:disable-filtering="true"
|
||||||
hide-default-footer
|
hide-default-footer
|
||||||
:sort-by="['created']"
|
hide-default-header
|
||||||
:sort-desc="[true]"
|
|
||||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
|
||||||
>
|
>
|
||||||
</v-data-table>
|
</v-data-table>
|
||||||
<v-spacer></v-spacer>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<v-expansion-panels focusable>
|
<v-expansion-panels focusable>
|
||||||
<ExtensionTags :dataListSelection="dataListSelection" />
|
<ExtensionTags :dataListSelection="dataListSelection" />
|
||||||
@@ -84,7 +85,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (jobId == "clear") {
|
if (jobId == "clear") {
|
||||||
vm.errorObj = null;
|
vm.errorObj = [];
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
console.log("Fetching for job", jobId);
|
console.log("Fetching for job", jobId);
|
||||||
|
|||||||
Reference in New Issue
Block a user