mirror of
https://github.com/immich-app/immich
synced 2026-08-29 13:15:45 +00:00
feat(web): Add upload to stack action (#19842)
* feat(web): Add upload to stack action * Event handling and translation * Update asset viewer instead * lint, improve upload return type * Add suggestions from code review * Resolve merge conflicts * Apply suggestions from code review
This commit is contained in:
parent
d764a59011
commit
cf60f4cdcd
8 changed files with 54 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ export const openFileUploadDialog = async (options: FileUploadParam = {}) => {
|
|||
const { albumId, multiple = true, assetId } = options;
|
||||
const extensions = uploadManager.getExtensions();
|
||||
|
||||
return new Promise<(string | undefined)[]>((resolve, reject) => {
|
||||
return new Promise<string[]>((resolve, reject) => {
|
||||
try {
|
||||
const fileSelector = document.createElement('input');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue