From 5daaeff2c4dc4ede46f4ccccf9a6e707ed9ef695 Mon Sep 17 00:00:00 2001
From: Piyush Bhaskar <102078527+Piyush-r-bhaskar@users.noreply.github.com>
Date: Tue, 7 Jan 2025 22:59:30 +0530
Subject: [PATCH 1/4] implemented the functionality.
---
ui/src/components/executions/Executions.vue | 81 ++++---
ui/src/components/executions/Properties.vue | 242 ++++++++++++++++++++
ui/src/components/flows/Flows.vue | 87 ++++++-
ui/src/translations/en.json | 8 +-
4 files changed, 380 insertions(+), 38 deletions(-)
create mode 100644 ui/src/components/executions/Properties.vue
diff --git a/ui/src/components/executions/Executions.vue b/ui/src/components/executions/Executions.vue
index b9a420230eb..08f0eaa60c4 100644
--- a/ui/src/components/executions/Executions.vue
+++ b/ui/src/components/executions/Executions.vue
@@ -26,6 +26,13 @@
/>
+
+
+
@@ -164,8 +171,8 @@
@@ -272,8 +280,8 @@
@@ -291,7 +299,7 @@
-
+
+
+
diff --git a/ui/src/components/flows/Flows.vue b/ui/src/components/flows/Flows.vue
index 6a5f8ffa044..78ed1e52359 100644
--- a/ui/src/components/flows/Flows.vue
+++ b/ui/src/components/flows/Flows.vue
@@ -34,6 +34,13 @@
+
+
+
@@ -122,13 +129,14 @@
-
+
@@ -147,9 +155,9 @@
@@ -157,9 +165,9 @@
@@ -173,13 +181,13 @@
-
+
-
+
-
diff --git a/ui/src/components/flows/Flows.vue b/ui/src/components/flows/Flows.vue
index 78ed1e52359..8f2bf977976 100644
--- a/ui/src/components/flows/Flows.vue
+++ b/ui/src/components/flows/Flows.vue
@@ -34,13 +34,6 @@
-
-
-
@@ -66,6 +59,13 @@
+
@@ -107,6 +107,7 @@
-
+
From c62659f5a5122dd3053beb54d846499fa686f917 Mon Sep 17 00:00:00 2001
From: Piyush Bhaskar <102078527+Piyush-r-bhaskar@users.noreply.github.com>
Date: Thu, 9 Jan 2025 11:30:51 +0530
Subject: [PATCH 3/4] remove button animation
---
.../{executions => }/Properties.vue | 21 +------------------
ui/src/components/executions/Executions.vue | 2 +-
ui/src/components/flows/Flows.vue | 2 +-
3 files changed, 3 insertions(+), 22 deletions(-)
rename ui/src/components/{executions => }/Properties.vue (94%)
diff --git a/ui/src/components/executions/Properties.vue b/ui/src/components/Properties.vue
similarity index 94%
rename from ui/src/components/executions/Properties.vue
rename to ui/src/components/Properties.vue
index 79c7db66b34..8cd90224fa3 100644
--- a/ui/src/components/executions/Properties.vue
+++ b/ui/src/components/Properties.vue
@@ -1,6 +1,6 @@
-
+
{{ $t("properties.button") }}
@@ -176,25 +176,6 @@
}
}
-.animated-button {
- animation: color-change 1.5s infinite;
-}
-
-@keyframes color-change {
- 0% {
- background-color: #8405ff;
- color: white;
- }
- 50% {
- background-color: #a64dff;
- color: white;
- }
- 100% {
- background-color: #8405ff;
- color: white;
- }
-}
-
.scrollable-container {
max-height: 300px;
overflow-y: scroll;
diff --git a/ui/src/components/executions/Executions.vue b/ui/src/components/executions/Executions.vue
index b5ddbca7bbe..fb09d2f280c 100644
--- a/ui/src/components/executions/Executions.vue
+++ b/ui/src/components/executions/Executions.vue
@@ -376,7 +376,7 @@
import KestraFilter from "../filter/KestraFilter.vue"
import QueueFirstInLastOut from "vue-material-design-icons/QueueFirstInLastOut.vue";
import RunFast from "vue-material-design-icons/RunFast.vue";
- import Properties from "./Properties.vue";
+ import Properties from "../Properties.vue";