Skip to content

Commit 82cdf3e

Browse files
committed
fix: hidden start button for database services
1 parent ebeec69 commit 82cdf3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/services/[id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const ShowServicePage = async ({
105105
<SubmitButton variant="danger" icon={faCircleStop} text="Stop" />
106106
</form>
107107
)}
108-
{!service.containerId && (readyImages.length > 0) && (
108+
{!service.containerId && (service.kind === "database" || readyImages.length > 0) && (
109109
<form action={start.bind(null, service.id)}>
110110
<SubmitButton variant="success" icon={faCirclePlay} text="Start" />
111111
</form>

0 commit comments

Comments
 (0)