Add private registry config section in settings

This commit is contained in:
Johannes Zellner
2025-01-24 17:38:18 +01:00
parent b3736617c4
commit 24b9e713f2
4 changed files with 198 additions and 6 deletions
+2 -2
View File
@@ -216,8 +216,8 @@ onMounted(async () => {
</div>
</div>
<ProgressBar v-show="updateBusy" :value="percent" />
<p v-show="updateBusy">{{ message }}</p>
<ProgressBar :value="percent" v-if="updateBusy" />
<p v-if="updateBusy">{{ message }}</p>
<Button danger v-show="updateBusy" @click="onStop()">{{ $t('settings.updates.stopUpdateAction') }}</Button>
<Button v-show="!pendingUpdate" :disabled="checkingBusy" :loading="checkingBusy" @click="onCheck()">{{ $t('settings.updates.checkForUpdatesAction') }}</Button>