From a365067e78a656a0dc6a359823cfb98955019353 Mon Sep 17 00:00:00 2001 From: Jiro Ghianni Date: Mon, 22 Apr 2024 15:43:18 +0200 Subject: [PATCH] [#2328] Processed tabpanel feedback --- src/open_inwoner/js/components/form/LoginForm.js | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/open_inwoner/js/components/form/LoginForm.js b/src/open_inwoner/js/components/form/LoginForm.js index 82e80ec58c..dbc4f63131 100644 --- a/src/open_inwoner/js/components/form/LoginForm.js +++ b/src/open_inwoner/js/components/form/LoginForm.js @@ -50,13 +50,12 @@ export class LoginFormFocus { activateTabFromHash() { const hash = window.location.hash + const zakelijkTab = document.getElementById('zakelijk_tab') + const particulierTab = document.getElementById('particulier_tab') const particulierPanel = document.getElementById('particulier_panel') const zakelijkPanel = document.getElementById('zakelijk_panel') if (hash.includes('zakelijk')) { - const zakelijkTab = document.getElementById('zakelijk_tab') - const particulierTab = document.getElementById('particulier_tab') - particulierTab.classList.remove('active') particulierPanel.classList.remove('active') particulierPanel.classList.add('hide') @@ -65,16 +64,13 @@ export class LoginFormFocus { zakelijkPanel.classList.add('active') zakelijkTab.classList.add('active') } else { - const zakelijkHeader = document.getElementById('zakelijk_tab') - const particulierHeader = document.getElementById('particulier_tab') - particulierPanel.classList.remove('hide') - particulierHeader.classList.add('active') + particulierTab.classList.add('active') particulierPanel.classList.remove('active') zakelijkPanel.classList.add('hide') zakelijkPanel.classList.remove('active') - zakelijkHeader.classList.remove('active') + zakelijkTab.classList.remove('active') } } }