Browse Source

Fix views not hot reloading when table data changes

pull/1132/head
Andrew Kingston 5 years ago
parent
commit
975f080075
  1. 2
      packages/client/src/store/datasource.js

2
packages/client/src/store/datasource.js

@ -15,7 +15,7 @@ export const createDatasourceStore = () => {
let datasourceIds = []
// Extract table ID
if (datasource.type === "table") {
if (datasource.type === "table" || datasource.type === "view") {
if (datasource.tableId) {
datasourceIds.push(datasource.tableId)
}

Loading…
Cancel
Save