diff --git a/src/App.svelte b/src/App.svelte index 503c7f7..6a43a5d 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -3734,6 +3734,7 @@ {unstagedCount} {hasRepository} {isBusy} + {operation} {status} selectedFilePath={selectedExplorerPath} onSelectFile={selectFileFromStatus} diff --git a/src/lib/components/StatusPanel.svelte b/src/lib/components/StatusPanel.svelte index bfaa781..3d5e257 100644 --- a/src/lib/components/StatusPanel.svelte +++ b/src/lib/components/StatusPanel.svelte @@ -1,5 +1,5 @@ - + Working tree @@ -278,4 +280,49 @@ {/each} {/if} + + {#if isBusy && hasRepository} + + + + {operation || "Working"}… + + + {/if} + +