This commit is contained in:
2022-02-15 22:57:20 +00:00
parent 86ef5d90eb
commit c8ce606cd6
2 changed files with 11 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ beta versioning for actual release, beta rc1?
- BETA tester docs on what and how suggested to test?
Joyce will make survey for this
do a linux install fresh again here locally to confirm each step is still legit
@@ -401,10 +401,9 @@ console.log(parseFloat(localeParseFloat("1,100.9", "nl"))); // Dutch locale: rev
todo: 1 why is pg not setting path when install server so utils in path?
it just doesn't, maybe we should put a sample one in windows installs?
todo: 1 does user need terminal slash in windows for pgdump path or does server fill it in if missing?
answer: NO it does not
todo: 1 docs for iis pg install showing linux setting for pgdump path should have windows example
todo: 1 backup that fails writes a zero byte file but does trigger a general backup failed notification

View File

@@ -73,6 +73,7 @@
:sort-desc="[true]"
:header-props="{ sortByText: $ay.t('Sort') }"
data-cy="backupTable"
:item-class="itemRowClasses"
:no-data-text="$ay.t('NoData')"
>
<template v-slot:[`item.actions`]="{ item }">
@@ -342,6 +343,14 @@ export default {
vm.formState.loading = false;
window.$gz.errorHandler.handleFormError(error, vm);
}
},
itemRowClasses: function(item) {
let ret = "";
if (item.length == "0 B") {
ret += this.form().tableRowErrorClass();
}
return ret;
}
}
};