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