mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-01-12 00:06:29 +08:00
feat: fix issue with build frontend failed (#8994)
This commit is contained in:
@@ -70,11 +70,10 @@ const acceptParams = async (): Promise<void> => {
|
||||
unUsedList.value = [];
|
||||
for (const item of list) {
|
||||
if (
|
||||
(
|
||||
!item.tags ||
|
||||
(!item.tags ||
|
||||
item.tags.length === 0 ||
|
||||
(item.tags.length === 1 && item.tags[0].indexOf('<none>') !== -1)
|
||||
) && !item.isUsed
|
||||
(item.tags.length === 1 && item.tags[0].indexOf('<none>') !== -1)) &&
|
||||
!item.isUsed
|
||||
) {
|
||||
unTagList.value.push(item);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user