We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4b9dbf commit 166f4a5Copy full SHA for 166f4a5
packages/tui/apps/tag/app.tsx
@@ -240,7 +240,8 @@ function ConfirmStep({
240
})
241
const customCurrentTags = currentTags.filter((t) => t !== "latest")
242
const tagsChanged =
243
- tags.length !== customCurrentTags.length || tags.some((t, i) => t !== customCurrentTags[i])
+ tags.length !== customCurrentTags.length ||
244
+ [...tags].sort().join(",") !== [...customCurrentTags].sort().join(",")
245
return (
246
<Box flexDirection="column">
247
<Text bold>Confirm update for {expertKey}:</Text>
0 commit comments