From dc4ce74b21c0dec44304a55b56d16f5e9811f79e Mon Sep 17 00:00:00 2001 From: Alina Beck Date: Wed, 4 Sep 2019 17:45:20 +0100 Subject: [PATCH] add missing )) --- src/system/components/layout/Grid/Grid.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/components/layout/Grid/Grid.vue b/src/system/components/layout/Grid/Grid.vue index 6f2cc0c08..a66bb539a 100644 --- a/src/system/components/layout/Grid/Grid.vue +++ b/src/system/components/layout/Grid/Grid.vue @@ -55,7 +55,7 @@ export default { computed: { styles() { return { - gridTemplateColumns: `repeat(auto-fill, minmax(${this.minColumnWidth}px, 1fr`, + gridTemplateColumns: `repeat(auto-fill, minmax(${this.minColumnWidth}px, 1fr))`, gridGap: `${getSpace(this.gap)}px`, gridAutoRows: `${this.rowHeight}px`, }