This commit is contained in:
2021-02-04 20:50:08 +00:00
parent 60d9a57417
commit bef2472ca0
2 changed files with 14 additions and 3 deletions

View File

@@ -745,6 +745,8 @@ export default {
} else {
//Save a copy of the server columns data for handling button clicks etc later
vm.serverColumns = res.columns;
//save a copy of the filter to show the filter symbol icons beside column headers
//and know that the return list *is* filtered
vm.serverFilter = res.filter;
//Make sure the translation keys are fetched
await fetchTranslatedHeaderNames(res.columns); //Note can use await here because it's wrapped inside an async function call, it will wait then resume next stuff below