mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Upgraded dependency minor/patch versions.
This commit is contained in:
parent
36cb131920
commit
cb5e9427f7
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user