Fix tags input
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
19b105594d
commit
64aae1267c
@ -37,9 +37,10 @@ import { ITag } from "../../types/tag.model";
|
||||
},
|
||||
set(tagStrings) {
|
||||
const tagEntities = tagStrings.map((tag: string | ITag) => {
|
||||
if (!(tag instanceof String)) {
|
||||
if (typeof tag !== "string") {
|
||||
return tag;
|
||||
}
|
||||
// @ts-ignore
|
||||
return { title: tag, slug: tag } as ITag;
|
||||
});
|
||||
this.$emit("input", tagEntities);
|
||||
|
Loading…
Reference in New Issue
Block a user