This commit is contained in:
parent
fde6ce650c
commit
49c8745c70
1 changed files with 3 additions and 1 deletions
|
@ -921,7 +921,9 @@ export class Files extends Model {
|
|||
// 文件展开时,刷新
|
||||
liElement.nextElementSibling.remove();
|
||||
}
|
||||
liElement.querySelector(".b3-list-item__arrow").classList.add("b3-list-item__arrow--open");
|
||||
const arrowElement = liElement.querySelector(".b3-list-item__arrow")
|
||||
arrowElement.classList.add("b3-list-item__arrow--open");
|
||||
arrowElement.parentElement.classList.remove("fn__hidden");
|
||||
liElement.insertAdjacentHTML("afterend", `<ul>${fileHTML}</ul>`);
|
||||
this.setCurrent(this.element.querySelector(`ul[data-url="${data.box}"] li[data-path="${filePath}"]`));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue