This commit is contained in:
@@ -28,7 +28,7 @@ beta versioning for actual release, beta rc1?
|
|||||||
- BETA tester docs on what and how suggested to test?
|
- BETA tester docs on what and how suggested to test?
|
||||||
Joyce will make survey for this
|
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?
|
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 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
|
todo: 1 backup that fails writes a zero byte file but does trigger a general backup failed notification
|
||||||
|
|||||||
@@ -73,6 +73,7 @@
|
|||||||
:sort-desc="[true]"
|
:sort-desc="[true]"
|
||||||
:header-props="{ sortByText: $ay.t('Sort') }"
|
:header-props="{ sortByText: $ay.t('Sort') }"
|
||||||
data-cy="backupTable"
|
data-cy="backupTable"
|
||||||
|
:item-class="itemRowClasses"
|
||||||
:no-data-text="$ay.t('NoData')"
|
:no-data-text="$ay.t('NoData')"
|
||||||
>
|
>
|
||||||
<template v-slot:[`item.actions`]="{ item }">
|
<template v-slot:[`item.actions`]="{ item }">
|
||||||
@@ -342,6 +343,14 @@ export default {
|
|||||||
vm.formState.loading = false;
|
vm.formState.loading = false;
|
||||||
window.$gz.errorHandler.handleFormError(error, vm);
|
window.$gz.errorHandler.handleFormError(error, vm);
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
itemRowClasses: function(item) {
|
||||||
|
let ret = "";
|
||||||
|
|
||||||
|
if (item.length == "0 B") {
|
||||||
|
ret += this.form().tableRowErrorClass();
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user