This commit is contained in:
@@ -4,7 +4,7 @@ PRIORITY - ALWAYS Lowest level stuff first, i.e. TODO at server, api route chang
|
|||||||
=-=-=-=-
|
=-=-=-=-
|
||||||
|
|
||||||
|
|
||||||
todo: JobExclusiveWarning missing translation at server
|
|
||||||
todo: Job queue form has no column headers for jobs, should it?
|
todo: Job queue form has no column headers for jobs, should it?
|
||||||
todo: ops metrics "other" database files oddly large by orders of magnitude above others
|
todo: ops metrics "other" database files oddly large by orders of magnitude above others
|
||||||
what up?
|
what up?
|
||||||
|
|||||||
@@ -9,9 +9,9 @@
|
|||||||
<template v-slot:default>
|
<template v-slot:default>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="text-left"></th>
|
<th class="text-left">{{ $ay.t("TimeStamp") }}</th>
|
||||||
<th class="text-left"></th>
|
<th class="text-left">{{ $ay.t("ID") }}</th>
|
||||||
<th class="text-left"></th>
|
<th class="text-left">{{ $ay.t("Status") }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@@ -243,6 +243,11 @@ async function initForm(vm) {
|
|||||||
// Ensures UI translated text is available
|
// Ensures UI translated text is available
|
||||||
//
|
//
|
||||||
async function fetchTranslatedText(vm) {
|
async function fetchTranslatedText(vm) {
|
||||||
await window.$gz.translation.cacheTranslations(["OpsTestJob"]);
|
await window.$gz.translation.cacheTranslations([
|
||||||
|
"OpsTestJob",
|
||||||
|
"TimeStamp",
|
||||||
|
"ID",
|
||||||
|
"Status"
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user