This commit is contained in:
2020-07-01 22:55:30 +00:00
parent 429c4944fb
commit 53e6b645d4
2 changed files with 10 additions and 5 deletions

View File

@@ -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: ops metrics "other" database files oddly large by orders of magnitude above others
what up?

View File

@@ -9,9 +9,9 @@
<template v-slot:default>
<thead>
<tr>
<th class="text-left"></th>
<th class="text-left"></th>
<th class="text-left"></th>
<th class="text-left">{{ $ay.t("TimeStamp") }}</th>
<th class="text-left">{{ $ay.t("ID") }}</th>
<th class="text-left">{{ $ay.t("Status") }}</th>
</tr>
</thead>
<tbody>
@@ -243,6 +243,11 @@ async function initForm(vm) {
// Ensures UI translated text is available
//
async function fetchTranslatedText(vm) {
await window.$gz.translation.cacheTranslations(["OpsTestJob"]);
await window.$gz.translation.cacheTranslations([
"OpsTestJob",
"TimeStamp",
"ID",
"Status"
]);
}
</script>