Skip to content

Commit

Permalink
fix update
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Oct 12, 2023
1 parent b5e857b commit 9f7b89f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/frontend/src/pages/admin/update.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template v-if="releasesCherryPick" #value>{{ releasesCherryPick[0].tag_name }}</template>
<template v-else #value><MkEllipsis/></template>
</MkKeyValue>
<MkButton v-if="!skipVersion && (version < releasesCherryPick[0].tag_name)" style="margin-top: 10px;" @click="skipThisRelease">{{ i18n.ts.skipThisRelease }}</MkButton>
<MkButton v-if="!skipVersion && (version < releasesCherryPick[0].tag_name)" style="margin-top: 10px;" @click="skipThisVersion">{{ i18n.ts.skipThisVersion }}</MkButton>
</FormSection>

<FormSection @click="whatIsNewLatestCherryPick">
Expand Down Expand Up @@ -104,7 +104,7 @@ function save() {
});
}

function skipThisRelease() {
function skipThisVersion() {
skipCherryPickVersion = releasesCherryPick[0].tag_name;
skipVersion = true;

Expand Down

0 comments on commit 9f7b89f

Please sign in to comment.