Skip to content

Commit

Permalink
docs: fix storybook errors
Browse files Browse the repository at this point in the history
  • Loading branch information
NHristov-sap committed Nov 15, 2023
1 parent 4f8a400 commit 8ba84e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/main/src/FileUploader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ class FileUploader extends UI5Element implements IFormElement {
* @readonly
* @public
*/
get files(): FileList {
get files(): FileList | null {
if (this._input) {
return this._input.files;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/main/src/TimeSelectionInputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class TimeSelectionInputs extends TimePickerInternals {
* @param input the Input component
* @returns inner input element
*/
_innerInput(input: Input): HTMLElement | null {
_innerInput(input: Input): HTMLInputElement | null {
return input && input.getInputDOMRefSync();
}

Expand Down

0 comments on commit 8ba84e9

Please sign in to comment.