From 14c79eb458c856fc2b74b707a0278bc94bf92499 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Busso?= <90727999+agustinbusso@users.noreply.github.com> Date: Thu, 15 Jan 2026 13:06:42 -0300 Subject: [PATCH 1/4] Add translation strings --- resources/lang/en.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/lang/en.json b/resources/lang/en.json index f95ae63b21..5e07c388e7 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -908,7 +908,8 @@ "Event": "Event", "Exclusive Gateway": "Exclusive Gateway", "Execution Error": "Execution Error", - "Execution Logs": "Execution Logs", + "Runtime Logs": "Runtime Logs", + "FlowGenie Studio Logs": "FlowGenie Studio Logs", "Execution Log": "Execution Log", "Executor Successfully Built. You can now close this window. ": "Executor Successfully Built. You can now close this window. ", "Existing Array": "Existing Array", From ebd7adec67ba88e4f83cb0b3c8e1dbf202f7fd86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Busso?= <90727999+agustinbusso@users.noreply.github.com> Date: Thu, 15 Jan 2026 13:07:59 -0300 Subject: [PATCH 2/4] Add detail panel in log container --- .../Logs/LogContainer/LogContainer.vue | 63 +++++++++++++++++-- .../components/Logs/LogTable/LogTable.vue | 28 ++++++++- 2 files changed, 86 insertions(+), 5 deletions(-) diff --git a/resources/js/admin/logs/components/Logs/LogContainer/LogContainer.vue b/resources/js/admin/logs/components/Logs/LogContainer/LogContainer.vue index 11cffd54fb..9825c0a42e 100644 --- a/resources/js/admin/logs/components/Logs/LogContainer/LogContainer.vue +++ b/resources/js/admin/logs/components/Logs/LogContainer/LogContainer.vue @@ -2,7 +2,10 @@
-
+
- +
+ + + +
+
+ +
+
+
+ diff --git a/resources/js/admin/logs/components/Logs/LogTable/LogTable.vue b/resources/js/admin/logs/components/Logs/LogTable/LogTable.vue index 1de1ff41f1..690552e324 100644 --- a/resources/js/admin/logs/components/Logs/LogTable/LogTable.vue +++ b/resources/js/admin/logs/components/Logs/LogTable/LogTable.vue @@ -35,6 +35,10 @@ v-else :columns="columns" :data="data" + :clickable="isAgentCategory" + :selected-item="selectedSession" + item-key="session_id" + @row-click="handleRowClick" >