Skip to content

Commit

Permalink
default to white background for web uis (#743)
Browse files Browse the repository at this point in the history
  • Loading branch information
ABevier authored Jul 21, 2023
1 parent 319b519 commit 07f0d55
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tea",
"version": "0.2.46",
"version": "0.2.47",
"private": true,
"description": "tea gui app",
"author": "tea.xyz",
Expand Down
7 changes: 6 additions & 1 deletion svelte/src/components/web-ui/web-ui.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@

{#if pty && pty.guiURL}
<div class="h-full w-full">
<iframe id="webui" title="{pty.project} web UI" src={pty.guiURL} class="h-full w-full" />
<iframe
id="webui"
title="{pty.project} web UI"
src={pty.guiURL}
class="h-full w-full bg-white"
/>
</div>
{/if}

0 comments on commit 07f0d55

Please sign in to comment.