add tags to data and to status component

This commit is contained in:
Moonman 2019-05-20 00:03:50 -04:00
parent 5bf208f2d1
commit fc9acf8fb6
3 changed files with 10 additions and 1 deletions

View file

@ -289,6 +289,13 @@ const Status = {
AvatarList
},
methods: {
generateTagAttributes(tags) {
let res = {};
for (let tag of tags) {
res['data-tag-'+tag.name] = tag.name;
}
return res;
},
visibilityIcon (visibility) {
switch (visibility) {
case 'private':