Shivam Mishra
2024-10-02 13:06:30 +05:30
committed by GitHub
parent e0bf2bd9d4
commit 42f6621afb
661 changed files with 15939 additions and 31194 deletions

View File

@@ -5,6 +5,7 @@ import { ON_UNREAD_MESSAGE_CLICK } from '../constants/widgetBusEvents';
import FluentIcon from 'shared/components/FluentIcon/Index.vue';
import UnreadMessage from 'widget/components/UnreadMessage.vue';
import { isWidgetColorLighter } from 'shared/helpers/colorHelper';
import { emitter } from 'shared/helpers/mitt';
export default {
name: 'Unread',
@@ -34,7 +35,7 @@ export default {
},
methods: {
openConversationView() {
this.$emitter.emit(ON_UNREAD_MESSAGE_CLICK);
emitter.emit(ON_UNREAD_MESSAGE_CLICK);
},
closeFullView() {
this.$emit('close');
@@ -100,7 +101,7 @@ export default {
</template>
<style lang="scss" scoped>
@import '~widget/assets/scss/variables';
@import 'widget/assets/scss/variables';
.unread-wrap {
width: 100%;
@@ -147,6 +148,7 @@ export default {
color: $color-body;
}
}
.is-background-light {
color: $color-body !important;
}