Resolve "No history message for new room members"

This commit is contained in:
N Pex 2023-04-27 07:09:20 +00:00
parent 5c7a95b524
commit 42ea00cd9c
4 changed files with 61 additions and 2 deletions

View file

@ -0,0 +1,19 @@
<template>
<div class="text-center">
<v-icon size="27" class="shield">$vuetify.icons.ic_security-shield</v-icon>
<div>{{ $t("room_welcome.no_past_messages") }}</div>
</div>
</template>
<script>
export default {
name: "NoHistoryRoomWelcomeHeader",
};
</script>
<style lang="scss">
@import "@/assets/css/chat.scss";
.shield {
margin-bottom: 12px;
}
</style>