From a3c07815dc112044dd44b5219f2c67a500d6fdd4 Mon Sep 17 00:00:00 2001 From: Arnau Giralt Date: Thu, 20 Jul 2023 16:34:59 +0200 Subject: [PATCH] wip port dialog --- ui/src/pages/DeploymentDetails.vue | 41 ++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/ui/src/pages/DeploymentDetails.vue b/ui/src/pages/DeploymentDetails.vue index 76cccb9..79bb632 100644 --- a/ui/src/pages/DeploymentDetails.vue +++ b/ui/src/pages/DeploymentDetails.vue @@ -12,6 +12,7 @@ label="sync", color="accent", mode="solid", + @click="openDialog", ) .info-container @@ -74,6 +75,14 @@ template(#configuration="") .configuration-tab Configuration + c-dialog( + v-model="isDialogShown", + :actions="actions", + :tabs="dialogTabs", + title="Foo", + error-text="Lorem ipsum dolor sit amet", + ) +