From 55cb6381d4f308df186486b279be23d168924578 Mon Sep 17 00:00:00 2001 From: thisismattmiller Date: Fri, 26 Jun 2026 10:30:34 -0400 Subject: [PATCH] button shouldnt be green --- src/stores/profile.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/stores/profile.js b/src/stores/profile.js index 2c8ca743..312d7676 100644 --- a/src/stores/profile.js +++ b/src/stores/profile.js @@ -3979,6 +3979,10 @@ export const useProfileStore = defineStore('profile', { * @return {void} - */ loadRecordFromBackend: async function(eid){ + // loading a fresh record into the editor, clear the "posted" UI flag so the + // post button doesn't stay green from a previously posted record + this.activeProfilePosted = false + this.activeProfilePostedTimestamp = false this.activeProfile = await utilsProfile.loadRecordFromBackend(eid) },