mirror of
https://github.com/gchq/CyberChef
synced 2025-01-07 18:18:47 +00:00
Fix refreshTabs not always hiding the tab bar
This commit is contained in:
parent
3b8c365f7e
commit
65bb7f32e9
1 changed files with 1 additions and 1 deletions
|
@ -847,7 +847,7 @@ class InputWaiter {
|
|||
tabsList.appendChild(this.createTabElement(nums[i], active));
|
||||
}
|
||||
|
||||
if (nums.length > 0) {
|
||||
if (nums.length > 1) {
|
||||
tabsList.parentElement.style.display = "block";
|
||||
|
||||
document.getElementById("input-wrapper").style.height = "calc(100% - var(--tab-height) - var(--title-height))";
|
||||
|
|
Loading…
Reference in a new issue