1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

Merge pull request #743 from Budibase/bug/minor-fixes

Minor fixes - Chuckles
This commit is contained in:
Martin McKeaveney 2020-10-17 12:16:46 +01:00 committed by GitHub
commit 8e50aa152b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View file

@ -1,5 +1,6 @@
<script>
import api from "builderStore/api"
import { backendUiStore } from "builderStore"
import Table from "./Table.svelte"
import CalculateButton from "./buttons/CalculateButton.svelte"
import GroupByButton from "./buttons/GroupByButton.svelte"
@ -22,6 +23,15 @@
}
async function fetchViewData(name, field, groupBy, calculation) {
const tables = $backendUiStore.tables
const allTableViews = tables.map(table => table.views)
const thisView = allTableViews.filter(
views => views != null && views[name] != null
)[0]
// don't fetch view data if the view no longer exists
if (!thisView) {
return
}
const params = new URLSearchParams()
if (calculation) {
params.set("field", field)

View file

@ -139,6 +139,8 @@ export const margin = [
{ label: "32px", value: "32px" },
{ label: "48px", value: "48px" },
{ label: "64px", value: "64px" },
{ label: "128px", value: "128px" },
{ label: "256px", value: "256px" },
{ label: "Auto", value: "auto" },
{ label: "100%", value: "100%" },
],