We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdeb842 commit 708499aCopy full SHA for 708499a
frontend/src/views/container/image/prune/index.vue
@@ -70,11 +70,10 @@ const acceptParams = async (): Promise<void> => {
70
unUsedList.value = [];
71
for (const item of list) {
72
if (
73
- (
74
- !item.tags ||
+ (!item.tags ||
75
item.tags.length === 0 ||
76
- (item.tags.length === 1 && item.tags[0].indexOf('<none>') !== -1)
77
- ) && !item.isUsed
+ (item.tags.length === 1 && item.tags[0].indexOf('<none>') !== -1)) &&
+ !item.isUsed
78
) {
79
unTagList.value.push(item);
80
}
0 commit comments