Browse Source
Merge pull request #1074 from Budibase/views_bugfix
fix: views not loading in deployed apps
pull/1076/head
Michael Shanks
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
packages/client/src/api/views.js
|
|
|
@ -18,7 +18,7 @@ export const fetchViewData = async ({ |
|
|
|
params.set("calculation", calculation) |
|
|
|
} |
|
|
|
if (groupBy) { |
|
|
|
params.set("group", groupBy) |
|
|
|
params.set("group", groupBy ? "true" : "false") |
|
|
|
} |
|
|
|
|
|
|
|
const QUERY_VIEW_URL = field |
|
|
|
|