|
@@ -213,7 +213,7 @@
|
|
|
|
|
|
const handleTag = (item) => {
|
|
|
form.value = {...form.value, ...item}
|
|
|
- tagList.value = item?.labels?.split(',').map(l => ({name: l}));
|
|
|
+ tagList.value = item?.labels?.split(',').map(l => ({name: l}))||[];
|
|
|
tagShow.value = true;
|
|
|
}
|
|
|
const handleDeleteTag = (item, index) => {
|