From 7687ffbd2be5fb083d5eb234e91a3ee3cf26c860 Mon Sep 17 00:00:00 2001 From: "Maksym Hryzodub [DREAM]" Date: Fri, 18 Sep 2026 20:57:03 +0300 Subject: [PATCH] fix(admin): drop the duplicate restart banner from the Peers tab (CLEAN-98) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The agent page already raises a restart banner above every tab, and the peer store is what raises it — connect, import, refresh and remove all call markPendingRestart. The copy inside the Peers tab added a second button for the same job, wired to a different code path, and it did not clear the page banner when pressed, so the tab kept telling the operator to restart an agent that had just restarted. What the page banner cannot know stays where it was: the armed badge next to "Peer network" still reports whether the RUNNING pod holds this peer set. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01SZ9dCrzZqd5SwR4erLYe12 --- .../slices/agent/peer/components/peer/Tab.vue | 45 +++---------------- 1 file changed, 6 insertions(+), 39 deletions(-) diff --git a/admin/slices/agent/peer/components/peer/Tab.vue b/admin/slices/agent/peer/components/peer/Tab.vue index 5aaebfd8..19b29021 100644 --- a/admin/slices/agent/peer/components/peer/Tab.vue +++ b/admin/slices/agent/peer/components/peer/Tab.vue @@ -1,7 +1,6 @@