This commit is contained in:
syuilo 2025-06-07 08:15:31 +09:00
parent 4906f1f45c
commit 1c3604c7fb
1 changed files with 2 additions and 1 deletions

View File

@ -157,7 +157,7 @@ export function useUploader(options: {
!item.uploaded
) {
menu.push({
icon: 'ti ti-cursor-text',
icon: 'ti ti-forms',
text: i18n.ts.rename,
action: async () => {
const { result, canceled } = await os.inputText({
@ -363,6 +363,7 @@ export function useUploader(options: {
}, {
icon: 'ti ti-x',
text: i18n.ts.remove,
danger: true,
action: () => {
removeItem(item);
},