mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
Fixes https://github.com/chatwoot/chatwoot/issues/8436 Fixes https://github.com/chatwoot/chatwoot/issues/9767 Fixes https://github.com/chatwoot/chatwoot/issues/10156 Fixes https://github.com/chatwoot/chatwoot/issues/6031 Fixes https://github.com/chatwoot/chatwoot/issues/5696 Fixes https://github.com/chatwoot/chatwoot/issues/9250 Fixes https://github.com/chatwoot/chatwoot/issues/9762 --------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
36 lines
796 B
Vue
36 lines
796 B
Vue
<script>
|
|
import FeaturePlaceholder from './FeaturePlaceholder.vue';
|
|
export default {
|
|
components: { FeaturePlaceholder },
|
|
props: {
|
|
message: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col items-center justify-center h-full">
|
|
<img
|
|
class="m-4 w-32 hidden dark:block"
|
|
src="dashboard/assets/images/no-chat-dark.svg"
|
|
alt="No Chat dark"
|
|
/>
|
|
<img
|
|
class="m-4 w-32 block dark:hidden"
|
|
src="dashboard/assets/images/no-chat.svg"
|
|
alt="No Chat"
|
|
/>
|
|
<span
|
|
class="text-sm text-slate-800 dark:text-slate-200 font-medium text-center"
|
|
>
|
|
{{ message }}
|
|
<br />
|
|
</span>
|
|
<!-- Cmd bar, keyboard shortcuts placeholder -->
|
|
<FeaturePlaceholder />
|
|
</div>
|
|
</template>
|