This commit is contained in:
mProjectsCode 2022-10-18 11:20:04 +02:00
parent ccfb0fa9ee
commit fdbba31d84

View file

@ -33,7 +33,7 @@ export abstract class MediaTypeModel {
abstract getTags(): string[];
toMetaDataObject(): object {
return {...this.getWithOutUserData(), ...this.userData, tags: '#' + this.getTags().join('/')};
return {...this.getWithOutUserData(), ...this.userData, tags: this.getTags().join('/')};
}
getWithOutUserData(): object {