Fix merge issue

This commit is contained in:
Phillip Thelen
2019-09-19 16:22:28 +02:00
parent 6523b6b342
commit a629ec510f

View File

@@ -227,6 +227,9 @@ export default {
}; };
} }
} }
this.CHAT_FLAG_LIMIT_FOR_HIDING = CHAT_FLAG_LIMIT_FOR_HIDING;
this.CHAT_FLAG_FROM_SHADOW_MUTE = CHAT_FLAG_FROM_SHADOW_MUTE;
this.$emit('chat-card-mounted', this.msg.id);
}, },
methods: { methods: {
async like () { async like () {
@@ -290,10 +293,5 @@ export default {
return habiticaMarkdown.render(String(text)); return habiticaMarkdown.render(String(text));
}, },
}, },
mounted () {
this.CHAT_FLAG_LIMIT_FOR_HIDING = CHAT_FLAG_LIMIT_FOR_HIDING;
this.CHAT_FLAG_FROM_SHADOW_MUTE = CHAT_FLAG_FROM_SHADOW_MUTE;
this.$emit('chat-card-mounted', this.msg.id);
},
}; };
</script> </script>