summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/DataTable.vue
diff options
context:
space:
mode:
authorUdo Walter2019-02-22 05:35:00 +0100
committerUdo Walter2019-02-22 05:35:00 +0100
commit2a30588ad7862ff49ad037dc55155c236cb13387 (patch)
tree48f35c86f8c4c5150220e24cc4e30c84a37e4dde /webapp/src/components/DataTable.vue
parent[webapp/datatable] fix bug: search options (regex etc) did not trigger filter... (diff)
downloadbas-2a30588ad7862ff49ad037dc55155c236cb13387.tar.gz
bas-2a30588ad7862ff49ad037dc55155c236cb13387.tar.xz
bas-2a30588ad7862ff49ad037dc55155c236cb13387.zip
[webapp/datatable] fix table being empty before anything triggered the filtering
Diffstat (limited to 'webapp/src/components/DataTable.vue')
-rw-r--r--webapp/src/components/DataTable.vue3
1 files changed, 3 insertions, 0 deletions
diff --git a/webapp/src/components/DataTable.vue b/webapp/src/components/DataTable.vue
index 90d077c..98ce097 100644
--- a/webapp/src/components/DataTable.vue
+++ b/webapp/src/components/DataTable.vue
@@ -422,6 +422,9 @@ export default {
() => { this.filteredRows = result }
)
}
+ },
+ created () {
+ this.filterRows()
}
}
</script>