feat: polish

This commit is contained in:
kodi
2026-03-12 20:27:30 +01:00
parent e25d43200f
commit ac18291a3c
4 changed files with 13 additions and 29 deletions
-2
View File
@@ -313,7 +313,6 @@ function createButton(text, onClick) {
function setActivePane(pane) {
state.activePane = pane;
document.getElementById("active-pane-label").textContent = pane;
document.getElementById("left-pane").classList.toggle("active-pane", pane === "left");
document.getElementById("right-pane").classList.toggle("active-pane", pane === "right");
updateActionButtons();
@@ -985,7 +984,6 @@ async function loadBrowsePane(pane) {
});
const data = await apiRequest("GET", `/api/browse?${query.toString()}`);
model.currentPath = data.path;
document.getElementById(`${pane}-current-path`).textContent = data.path;
renderBreadcrumbs(pane, data.path);
const visibleItems = [];