summaryrefslogtreecommitdiff
path: root/src/components/Mixins/TableDataFormatter.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Mixins/TableDataFormatter.js')
-rw-r--r--src/components/Mixins/TableDataFormatter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Mixins/TableDataFormatter.js b/src/components/Mixins/TableDataFormatter.js
index 5dbe40ad..e811f90a 100644
--- a/src/components/Mixins/TableDataFormatter.js
+++ b/src/components/Mixins/TableDataFormatter.js
@@ -1,7 +1,7 @@
const TableDataFormatter = {
methods: {
tableFormatter(value) {
- if (value === undefined || value === '') {
+ if (value === undefined || value === null || value === '') {
return '--';
} else {
return value;