Files
thelounge/client/components/StatusmsgMarker.vue
Taavi Väänänen da23453133 Show STATUSMSG indication for actions as well (#5004)
It is possible to send actions (/me et al.) to a STATUSMSG target
(+#channel etc), even though thelounge does not currently support
sending that. Show the statusmsg indicator on such messages.
2026-04-10 08:47:31 -07:00

20 lines
411 B
Vue

<template>
<span
v-if="group"
:aria-label="`This message was only shown to users with ${group} mode`"
class="msg-statusmsg tooltipped tooltipped-e"
><span>{{ group }}</span></span
>
</template>
<script lang="ts">
import {defineComponent} from "vue";
export default defineComponent({
name: "StatusmsgMarker",
props: {
group: {type: String, required: false, default: undefined},
},
});
</script>