diff --git a/frontend/src/lib/components/apps/components/inputs/AppNumberInput.svelte b/frontend/src/lib/components/apps/components/inputs/AppNumberInput.svelte index f3a2bb90a4..625adb9190 100644 --- a/frontend/src/lib/components/apps/components/inputs/AppNumberInput.svelte +++ b/frontend/src/lib/components/apps/components/inputs/AppNumberInput.svelte @@ -46,6 +46,7 @@ ($selectedComponent = id)} on:focus={() => ($selectedComponent = id)} class={twMerge( 'windmillapp w-full py-1.5 text-sm focus:ring-indigo-100 px-2 mx-0.5', diff --git a/frontend/src/lib/components/apps/editor/AppPreview.svelte b/frontend/src/lib/components/apps/editor/AppPreview.svelte index bb581c61c4..b36e01eea6 100644 --- a/frontend/src/lib/components/apps/editor/AppPreview.svelte +++ b/frontend/src/lib/components/apps/editor/AppPreview.svelte @@ -91,7 +91,7 @@ class="{$$props.class} {lockedClasses} h-full w-full {app.fullscreen ? '' : 'max-w-6xl'} mx-auto" > - {#if $appStore.grid} + {#if $appStore.grid && !$appStore.norefreshbar}
{/if} +
{/if} -
- {policy.on_behalf_of ? `on behalf of ${policy.on_behalf_of_email}` : ''} +
+
+ Hide bar on view + +
+
+ {policy.on_behalf_of ? `on behalf of ${policy.on_behalf_of_email}` : ''} +
diff --git a/frontend/src/lib/components/apps/types.ts b/frontend/src/lib/components/apps/types.ts index 0b7672d046..4992d0ab97 100644 --- a/frontend/src/lib/components/apps/types.ts +++ b/frontend/src/lib/components/apps/types.ts @@ -101,6 +101,7 @@ export type InlineScript = { export type App = { grid: GridItem[] fullscreen: boolean + norefreshbar?: boolean unusedInlineScripts: Array<{ name: string inlineScript: InlineScript