[UWP App] Add download button in troubleshoot dialog (#638)

This commit is contained in:
Guillaume Jenkins 2018-02-08 14:52:59 -05:00 committed by Peli de Halleux
parent 35c712bc6d
commit ca7879b791
2 changed files with 2 additions and 2 deletions

View File

@ -349,7 +349,7 @@ namespace pxt.editor {
})
.catch(e => {
if (e.type === "devicenotfound" && d.reportDeviceNotFoundAsync) {
return d.reportDeviceNotFoundAsync("/device/windows-app/troubleshoot");
return d.reportDeviceNotFoundAsync("/device/windows-app/troubleshoot", resp);
} else {
return saveHexAsync()
}

View File

@ -38,6 +38,6 @@
"semantic-ui-less": "^2.2.4"
},
"dependencies": {
"pxt-core": "0.17.3"
"pxt-core": "0.17.4"
}
}