Skip to content

Commit

Permalink
Minor changes in update module
Browse files Browse the repository at this point in the history
  • Loading branch information
DIDIRUS4 committed Jul 14, 2024
1 parent 4b57513 commit d8301fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/app-frontend/src/components/ui/RunningAppBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@
{{ t('RunningAppBar.UpdatingDesc') }}
</p>
</div>
<span>{{ t('Settings.Remote') }} <a id="releaseData" class="cosmic inline-fix"></a></span>
<span>{{ t('Settings.Remote') }} <p id="releaseData" class="cosmic inline-fix"></p></span>
<span
>{{ t('Settings.Local') }}
<a class="cosmic inline-fix">v{{ version }}{{ patch_version }}</a></span
<p class="cosmic inline-fix">v{{ version }}{{ patch_version }}</p></span
>
<div class="button-group push-right">
<Button class="download-modal" @click="confirmUpdate.hide()">
Expand Down
4 changes: 3 additions & 1 deletion apps/app-frontend/src/helpers/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ export async function getRemote(elementIdBool, downloadArtifactBool) {
buildInstalling.value = true
const builds = data.assets
const fileName = getInstaller(getExtension(), builds)
await getArtifact(fileName[1], fileName[0], os.value, true)
if (fileName != null) {
await getArtifact(fileName[1], fileName[0], os.value, true)
}
buildInstalling.value = false
}
})
Expand Down

0 comments on commit d8301fa

Please sign in to comment.