fix for "open" button crashing in update manager

This commit is contained in:
Kenny 2022-03-08 12:40:46 -05:00
parent 7cdcf4bc40
commit b801505e75
1 changed files with 2 additions and 2 deletions

View File

@ -61,8 +61,8 @@ export default {
})
},
methods: {
async openEternal(item) {
await Browser.open({ url: item.url });
async openExternal(item) {
await Browser.open({ url: item.html_url });
}
}
}