Upgraded dependency minor/patch versions.

This commit is contained in:
Daan Vanden Bosch 2019-07-11 17:40:23 +02:00
parent 36cb131920
commit cb5e9427f7
4 changed files with 470 additions and 403 deletions

View File

@ -121,7 +121,7 @@ class Toolbar extends Component<{ onSaveAsClicked: (filename?: string) => void }
private set_filename = (info: UploadChangeParam<UploadFile>) => {
if (info.file.originFileObj) {
this.setState({ filename: info.file.name });
quest_editor_store.load_file(info.file.originFileObj);
quest_editor_store.load_file(info.file.originFileObj as File);
}
};

View File

@ -98,7 +98,7 @@ class Toolbar extends Component {
private load_file = (info: UploadChangeParam<UploadFile>) => {
if (info.file.originFileObj) {
this.setState({ filename: info.file.name });
model_viewer_store.load_file(info.file.originFileObj);
model_viewer_store.load_file(info.file.originFileObj as File);
}
};
}

View File

@ -46,7 +46,7 @@ class Toolbar extends Component {
private load_file = (info: UploadChangeParam<UploadFile>) => {
if (info.file.originFileObj) {
this.setState({ filename: info.file.name });
texture_viewer_store.load_file(info.file.originFileObj);
texture_viewer_store.load_file(info.file.originFileObj as File);
}
};
}

867
yarn.lock

File diff suppressed because it is too large Load Diff