refactor: improve UI botton titles (#656)

This commit is contained in:
sigoden
2026-01-09 16:21:40 +08:00
committed by GitHub
parent 7cfb97dfdf
commit ca18df1a36
2 changed files with 4 additions and 4 deletions

View File

@@ -465,7 +465,7 @@ function addPath(file, index) {
}
if (DATA.allow_delete) {
if (DATA.allow_upload) {
actionMove = `<div onclick="movePath(${index})" class="action-btn" id="moveBtn${index}" title="Move to new path">${ICONS.move}</div>`;
actionMove = `<div onclick="movePath(${index})" class="action-btn" id="moveBtn${index}" title="Move & Rename">${ICONS.move}</div>`;
if (!isDir) {
actionEdit = `<a class="action-btn" title="Edit file" target="_blank" href="${url}?edit">${ICONS.edit}</a>`;
}