work in progress icons

This commit is contained in:
Insert5StarName 2023-09-30 21:53:52 +02:00
parent f2e299a7a9
commit 7b179d3a92
251 changed files with 1062 additions and 1062 deletions

View file

@ -92,15 +92,15 @@ function select(src: any, label: string | null, multiple: boolean): Promise<Miss
ref: keepOriginal,
}, {
text: i18n.ts.upload,
icon: 'ti ti-upload',
icon: 'ph-upload ph-bold ph-lg',
action: () => chooseFileFromPc(multiple, keepOriginal.value).then(files => res(files)),
}, {
text: i18n.ts.fromDrive,
icon: 'ti ti-cloud',
icon: 'ph-cloud ph-bold ph-lg',
action: () => chooseFileFromDrive(multiple).then(files => res(files)),
}, {
text: i18n.ts.fromUrl,
icon: 'ti ti-link',
icon: 'ph-link ph-bold ph-lg',
action: () => chooseFileFromUrl().then(file => res([file])),
}], src);
});