From 61f0b79d63f8b1bea4971f9483aeb7e00455b457 Mon Sep 17 00:00:00 2001 From: Federico Jaramillo Martinez Date: Mon, 15 Jun 2026 00:23:54 +0200 Subject: [PATCH] fix: move session reload action last --- .changeset/session-actions-archive-first.md | 5 +++++ src/client/src/components/SessionList.ts | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/session-actions-archive-first.md diff --git a/.changeset/session-actions-archive-first.md b/.changeset/session-actions-archive-first.md new file mode 100644 index 0000000..d534ffb --- /dev/null +++ b/.changeset/session-actions-archive-first.md @@ -0,0 +1,5 @@ +--- +"@jmfederico/pi-web": patch +--- + +Move reload to the end of the session action menu. diff --git a/src/client/src/components/SessionList.ts b/src/client/src/components/SessionList.ts index d9229ac..e2c156d 100644 --- a/src/client/src/components/SessionList.ts +++ b/src/client/src/components/SessionList.ts @@ -228,10 +228,10 @@ export class SessionList extends LitElement implements KeyboardNavigableSection ` : html` - ${this.canReload ? html`` : null} - ${session.parentSessionPath !== undefined ? html`` : null} ${descendantCount > 0 ? html`` : null} + ${session.parentSessionPath !== undefined ? html`` : null} + ${this.canReload ? html`` : null} `} ` : null}