()
| 76 | } |
| 77 | |
| 78 | private updateButtonText() { |
| 79 | // Show "/" for root, otherwise folder path |
| 80 | const text = this.currentPath ? this.currentPath : "/"; |
| 81 | this.folderBtn.setButtonText(text); |
| 82 | } |
| 83 | |
| 84 | private submit(value: string) { |
| 85 | const fileName = value.trim(); |