This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user