Skip to content

Commit 1824cd4

Browse files
committed
chore: update
1 parent 1819c41 commit 1824cd4

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

examples/minimal-next-devframe-hub/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"description": "Protocol-witness example — a tiny Next.js Devframe Hub built on @devframes/hub that exercises every hub subsystem end-to-end.",
77
"homepage": "https://github.com/devframes/devframe/tree/main/examples/minimal-next-devframe-hub",
88
"scripts": {
9-
"dev": "next dev src/client -H 0.0.0.0",
9+
"dev": "pnpm -C ../.. run build && next dev src/client",
1010
"build": "next build src/client",
1111
"test": "vitest run --config vitest.config.ts"
1212
},

examples/minimal-vite-devframe-hub/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"description": "Protocol-witness example — a tiny Vite Devframe Hub built on @devframes/hub that exercises every hub subsystem end-to-end.",
77
"homepage": "https://github.com/devframes/devframe/tree/main/examples/minimal-vite-devframe-hub",
88
"scripts": {
9-
"dev": "vite",
9+
"dev": "pnpm -C ../.. run build && vite",
1010
"build": "vite build",
1111
"typecheck": "tsc --noEmit"
1212
},

plugins/terminals/src/client/App.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,8 +509,8 @@
509509
</button>
510510
{/if}
511511
{#if s.status === 'running'}
512-
<button type="button" class={iconButton({ variant: 'ghost', size: 'sm' })} title="Kill process" onclick={() => killSession(s.id)}>
513-
<div class="i-ph-stop-duotone"></div>
512+
<button type="button" class={[iconButton({ variant: 'ghost', size: 'sm' }), 'hover:text-red']} title="Kill process" onclick={() => killSession(s.id)}>
513+
<div class="i-ph-prohibit-duotone"></div>
514514
</button>
515515
{:else}
516516
<button type="button" class={iconButton({ variant: 'ghost', size: 'sm' })} title="Remove session" onclick={() => removeSession(s.id)}>

0 commit comments

Comments
 (0)