mirror of
https://github.com/ershisan99/coolify.git
synced 2026-01-29 12:34:38 +00:00
12 lines
252 B
Svelte
12 lines
252 B
Svelte
<script lang="ts">
|
|
export let id: string;
|
|
export let isComposeBuildPack: boolean = false;
|
|
import * as Buttons from '../Buttons';
|
|
</script>
|
|
|
|
{#if !isComposeBuildPack}
|
|
<Buttons.Restart {id} />
|
|
{/if}
|
|
<Buttons.ForceDeploy {id} />
|
|
<Buttons.Stop {id} />
|