fix: uncommented a previously commented line since this is probably a mistake and breaks functionality

* fix: lion-selected-filelist, restored composed: true and bubbles: true for 'file-remove-requested' event, otherwise removing files for subclassers won't work

* fix: uncommented a previously commented line since this is probably a mistake and breaks functionality

* Update packages/ui/components/input-file/src/LionInputFile.js

Co-authored-by: Thijs Louisse <thijs.louisse@ing.com>
This commit is contained in:
Danny Moerkerke 2024-03-06 15:21:09 +01:00 committed by GitHub
parent e97a4adf05
commit 36bf8c6ff5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'@lion/ui': patch
---
Uncommented a previously commented line since this is probably a mistake and breaks functionality

View file

@ -433,7 +433,8 @@ export class LionInputFile extends ScopedElementsMixin(LocalizeMixin(LionField))
];
}
});
// this._selectedFilesMetaData = [...this._selectedFilesMetaData];
// TODO: add a unit test for this
this._selectedFilesMetaData = [...this._selectedFilesMetaData];
}
});
}