This commit is contained in:
2020-12-09 19:46:03 +00:00
parent e4a465362e
commit 76b63913ac

View File

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