(tag: string)
| 23 | const { execute, isLoading } = updateInstanceConfig(); |
| 24 | |
| 25 | const removeTag = (tag: string) => { |
| 26 | tag = tag.trim(); |
| 27 | instanceTags.value.splice( |
| 28 | instanceTags.value.findIndex((v) => v === tag), |
| 29 | 1 |
| 30 | ); |
| 31 | }; |
| 32 | |
| 33 | const addTag = (tag: string) => { |
| 34 | tag = tag.trim(); |
nothing calls this directly
no test coverage detected