From ccc7568c06581ac557ed9b101ece89c4beee77c7 Mon Sep 17 00:00:00 2001 From: "Claude (Chronicler #83 - The Compiler)" Date: Tue, 14 Apr 2026 11:05:29 -0500 Subject: [PATCH] Add version UI to server matrix cards (both TX1 and NC1 loops) Adds installed version display, edit form, save/cancel buttons, and version history viewer to each server card. Uses var assignment pattern to avoid single quotes inside EJS attribute tags. EJS validates clean. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../src/views/admin/servers/_matrix_body.ejs | 70 +++++++++++++++++++ 1 file changed, 70 insertions(+) diff --git a/services/arbiter-3.0/src/views/admin/servers/_matrix_body.ejs b/services/arbiter-3.0/src/views/admin/servers/_matrix_body.ejs index 5e8a953..c2c4cd2 100644 --- a/services/arbiter-3.0/src/views/admin/servers/_matrix_body.ejs +++ b/services/arbiter-3.0/src/views/admin/servers/_matrix_body.ejs @@ -194,6 +194,41 @@ title="Restart">🔄 + + + <% var currentVersion = config && config.current_version ? config.current_version : null; %> +
+
📦 Installed Version
+
+ + <%= currentVersion || 'Not set' %> + + +
+ +
<% }) %> @@ -395,6 +430,41 @@ title="Restart">🔄 + + + <% var currentVersion = config && config.current_version ? config.current_version : null; %> +
+
📦 Installed Version
+
+ + <%= currentVersion || 'Not set' %> + + +
+ +
<% }) %>