We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3542a2a commit 6778fe8Copy full SHA for 6778fe8
packages/renderer/src/lib/image/PushImageModal.svelte
@@ -33,6 +33,7 @@ async function pushImage(imageTag: string) {
33
gotErrorDuringPush = false;
34
initTerminal = true;
35
await tick();
36
+ window.dispatchEvent(new Event('resize'));
37
logsPush?.reset();
38
39
pushInProgress = true;
@@ -104,8 +105,8 @@ $: window.hasAuthconfigForImage(imageInfoToPush.name).then(result => (isAuthenti
104
105
</p>{/if}
106
</div>
107
- <div class="max-h-[185px]" hidden={initTerminal === false}>
108
- <TerminalWindow bind:terminal={logsPush} disableStdIn />
+ <div class="h-[185px]" hidden={initTerminal === false}>
109
+ <TerminalWindow class="h-full" bind:terminal={logsPush} disableStdIn />
110
111
112
0 commit comments