From f2c3d197b5b9b100ff51e84cad1be384a8a20127 Mon Sep 17 00:00:00 2001 From: KoloMl Date: Sat, 30 Mar 2024 21:29:09 +0400 Subject: [PATCH] Added missing check --- src/stores/maintenance-profiles-store.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/maintenance-profiles-store.js b/src/stores/maintenance-profiles-store.js index 8a3e7d2..c71b0f3 100644 --- a/src/stores/maintenance-profiles-store.js +++ b/src/stores/maintenance-profiles-store.js @@ -41,5 +41,7 @@ activeProfileStore.subscribe(profileId => { return; } + lastActiveProfileId = profileId; + void maintenanceSettings.setActiveProfileId(profileId); })