mirror of
https://github.com/stackblitz/bolt.new
synced 2025-02-06 04:48:04 +00:00
fix: correction
fixed deletion from Workbench.client.tsx
This commit is contained in:
parent
8903d7c1cb
commit
c141064571
@ -159,6 +159,15 @@ export const Workbench = memo(({ chatStarted, isStreaming }: WorkspaceProps) =>
|
|||||||
{isSyncing ? <div className="i-ph:spinner" /> : <div className="i-ph:cloud-arrow-down" />}
|
{isSyncing ? <div className="i-ph:spinner" /> : <div className="i-ph:cloud-arrow-down" />}
|
||||||
{isSyncing ? 'Syncing...' : 'Sync Files'}
|
{isSyncing ? 'Syncing...' : 'Sync Files'}
|
||||||
</PanelHeaderButton>
|
</PanelHeaderButton>
|
||||||
|
<PanelHeaderButton
|
||||||
|
className="mr-1 text-sm"
|
||||||
|
onClick={() => {
|
||||||
|
workbenchStore.toggleTerminal(!workbenchStore.showTerminal.get());
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div className="i-ph:terminal" />
|
||||||
|
Toggle Terminal
|
||||||
|
</PanelHeaderButton>
|
||||||
<PanelHeaderButton
|
<PanelHeaderButton
|
||||||
className="mr-1 text-sm"
|
className="mr-1 text-sm"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
|
Loading…
Reference in New Issue
Block a user