j'emoji
This commit is contained in:
parent
06bcfc5f35
commit
79b64d80b5
2
bun.lock
2
bun.lock
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
"hono": ["hono@4.11.7", "", {}, "sha512-l7qMiNee7t82bH3SeyUCt9UF15EVmaBvsppY2zQtrbIhl/yzBTny+YUxsVjSjQ6gaqaeVtZmGocom8TzBlA4Yw=="],
|
||||
|
||||
"hype": ["hype@git+https://git.nose.space/defunkt/hype#a8d3a8203e145df7a222ea409588c2ea3a1ee4e6", { "dependencies": { "hono": "^4.10.4", "kleur": "^4.1.5" }, "peerDependencies": { "typescript": "^5" } }, "a8d3a8203e145df7a222ea409588c2ea3a1ee4e6"],
|
||||
"hype": ["hype@git+https://git.nose.space/defunkt/hype#1a8d4228347a47b696b4c6918179cda94fc1b0cd", { "dependencies": { "hono": "^4.10.4", "kleur": "^4.1.5" }, "peerDependencies": { "typescript": "^5" } }, "1a8d4228347a47b696b4c6918179cda94fc1b0cd"],
|
||||
|
||||
"kleur": ["kleur@4.1.5", "", {}, "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="],
|
||||
|
||||
|
|
|
|||
|
|
@ -273,9 +273,7 @@ const AppDetail = ({ app }: { app: App }) => (
|
|||
<>
|
||||
<MainHeader>
|
||||
<MainTitle>
|
||||
{app.state === 'running' && app.icon ? <>{app.icon}</> : (
|
||||
<StatusDot state={app.state} />
|
||||
)}
|
||||
{app.icon ?? <StatusDot state={app.state} />}
|
||||
|
||||
{app.name}
|
||||
</MainTitle>
|
||||
|
|
|
|||
|
|
@ -196,6 +196,7 @@ export const stopApp = (dir: string) => {
|
|||
const watchAppsDir = () => {
|
||||
watch(APPS_DIR, { recursive: true }, (_event, filename) => {
|
||||
if (!filename) return
|
||||
if (!filename.includes('/')) return
|
||||
|
||||
// Extract the app directory name from the path (e.g., "myapp/package.json" -> "myapp")
|
||||
const dir = filename.split('/')[0]!
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user