add date installed column to updates table
This commit is contained in:
parent
11592df356
commit
84e0368da4
|
@ -63,6 +63,7 @@
|
||||||
style="cursor:pointer;color:blue;text-decoration:underline"
|
style="cursor:pointer;color:blue;text-decoration:underline"
|
||||||
>{{ formatMessage(props.row.description) }}</span>
|
>{{ formatMessage(props.row.description) }}</span>
|
||||||
</q-td>
|
</q-td>
|
||||||
|
<q-td>{{ props.row.date_installed }}</q-td>
|
||||||
</q-tr>
|
</q-tr>
|
||||||
</template>
|
</template>
|
||||||
</q-table>
|
</q-table>
|
||||||
|
@ -118,6 +119,13 @@ export default {
|
||||||
field: "description",
|
field: "description",
|
||||||
align: "left",
|
align: "left",
|
||||||
sortable: true
|
sortable: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "date_installed",
|
||||||
|
label: "Installed On",
|
||||||
|
field: "date_installed",
|
||||||
|
align: "left",
|
||||||
|
sortable: true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
visibleColumns: [
|
visibleColumns: [
|
||||||
|
@ -125,7 +133,8 @@ export default {
|
||||||
"installed",
|
"installed",
|
||||||
"severity",
|
"severity",
|
||||||
"title",
|
"title",
|
||||||
"description"
|
"description",
|
||||||
|
"date_installed",
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue