@budibase/server 3.9.4 → 3.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/server",
3
3
  "email": "hi@budibase.com",
4
- "version": "3.9.4",
4
+ "version": "3.9.5",
5
5
  "description": "Budibase Web Server",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -222,5 +222,5 @@
222
222
  }
223
223
  }
224
224
  },
225
- "gitHead": "e357c4e0cbfb4e0376cb8b692bf725263a5f7dc3"
225
+ "gitHead": "c8333d77db162c596063ce5f1cafe9997b45e828"
226
226
  }
@@ -281,7 +281,7 @@ export const serveApp = async function (ctx: UserCtx<void, ServeAppResponse>) {
281
281
  const sideNav = appInfo.navigation.navigation === "Left"
282
282
  const hideFooter =
283
283
  ctx?.user?.license?.features?.includes(Feature.BRANDING) || false
284
- const themeVariables = getThemeVariables(appInfo?.theme || {})
284
+ const themeVariables = getThemeVariables(appInfo?.theme)
285
285
  const hasPWA = Object.keys(appInfo.pwa || {}).length > 0
286
286
  const manifestUrl = hasPWA ? `/api/apps/${appId}/manifest.json` : ""
287
287
  const addAppScripts =