aboutsummaryrefslogtreecommitdiff
path: root/resources/vue/components/blubber/SideInfo.vue
blob: 77aa9418a426317e60b9cef6c436d75888c506ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
    <div class="blubber_sideinfo responsive-hidden" v-if="thread['context-info']">
        <div class="context_info" v-html="thread['context-info']"></div>
    </div>
</template>

<script>
export default {
    props: {
        thread: {
            type: Object,
            required: true,
        },
    },
};
</script>