This commit is contained in:
2020-12-29 15:31:29 +00:00
parent ab1c3f2339
commit 10930e3966
2 changed files with 2 additions and 11 deletions

View File

@@ -8,12 +8,6 @@ MISC ITEMS THAT CAME UP
todo: datatable number currency zero shows blank on grid, not zero
Saw it in the imported rates
todo: datatable numbers
currency and possibly other numbers should center justify in their columns or left or whatever it takes to not look so weird but still be comparable / lined up or whatever
OR
Maybe it's the column header itself that should be moved
NOTE: CUrrency has problem, decimal apparently does not...investigate
todo: NEXT DEPLOY TO DEVOPS attach a photo from phone, no error just does nothing

View File

@@ -234,9 +234,6 @@ export default {
if (!value) {
return false;
}
if (value == "") {
return false;
}
return new Date(value) < new Date();
},
@@ -245,7 +242,7 @@ export default {
// currency display
//
currencyLocalized(value, languageName, currencyName) {
if (!value) return "";
if (value == null) return "";
if (!languageName) {
languageName = this.getBrowserLanguages();
}
@@ -263,7 +260,7 @@ export default {
// decimal format display
//
decimalLocalized(value, languageName) {
if (!value) return "";
if (value == null) return "";
if (!languageName) {
languageName = this.getBrowserLanguages();
}