mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-18 03:55:02 +00:00
* Add sort filter * Change UI * Change filter * Complete sort by filters * Style fixes * Fix default sort * Update app/javascript/dashboard/components/widgets/conversation/ConversationBasicFilter.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Update app/javascript/dashboard/components/widgets/conversation/ConversationBasicFilter.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Update app/javascript/dashboard/components/ChatList.vue Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> * Added translation * Added review fixes * Add more updates * Code cleanups * Update last_activity_at on message received event * Cleans up the design for chatlist and icons * Fix sort * Remove inline styles * Add tag along with the title --------- Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com> Co-authored-by: Nithin David Thomas <1277421+nithindavid@users.noreply.github.com>
36 lines
628 B
Vue
36 lines
628 B
Vue
<template>
|
|
<li class="sub-menu-container">
|
|
<ul class="sub-menu-li-container">
|
|
<woot-dropdown-header v-if="title" :title="title" />
|
|
<slot />
|
|
</ul>
|
|
</li>
|
|
</template>
|
|
<script>
|
|
import WootDropdownHeader from 'shared/components/ui/dropdown/DropdownHeader';
|
|
|
|
export default {
|
|
name: 'WootDropdownMenu',
|
|
componentName: 'WootDropdownMenu',
|
|
|
|
components: {
|
|
WootDropdownHeader,
|
|
},
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.sub-menu-container {
|
|
margin-top: var(--space-micro);
|
|
}
|
|
|
|
.sub-menu-li-container {
|
|
margin: 0;
|
|
}
|
|
</style>
|