From 1fb74e6551f4ca9fa681d03fd3d0e0fa7e2fa99c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20=C5=A0?= Date: Sun, 12 Nov 2023 19:16:23 +0100 Subject: [PATCH] Fix profile name not updating in the extension --- extension/src/sites/manage.js | 1 + 1 file changed, 1 insertion(+) diff --git a/extension/src/sites/manage.js b/extension/src/sites/manage.js index 5c5c4f8e..3082f151 100644 --- a/extension/src/sites/manage.js +++ b/extension/src/sites/manage.js @@ -147,6 +147,7 @@ async function createSiteList () { // Set site's profile from config const profilesElement = document.getElementById('web-app-profile') + profilesElement.replaceChildren() profilesElement.add(new Option(profiles[site.profile].name || site.profile, site.profile)) // Create protocol handlers list and set enabled handlers