mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-08 15:03:14 +00:00
<img width="1439" alt="Screenshot 2024-10-30 at 8 58 12 PM" src="https://github.com/user-attachments/assets/26231270-5e73-40fb-9efa-c661585ebe7c"> Fixes https://linear.app/chatwoot/project/campaign-redesign-f82bede26ca7/overview --------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
42 lines
1.0 KiB
Vue
42 lines
1.0 KiB
Vue
<script setup>
|
|
import Icon from 'dashboard/components-next/icon/Icon.vue';
|
|
import { messageStamp } from 'shared/helpers/timeHelper';
|
|
|
|
import { useI18n } from 'vue-i18n';
|
|
defineProps({
|
|
inboxName: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
inboxIcon: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
scheduledAt: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
});
|
|
|
|
const { t } = useI18n();
|
|
</script>
|
|
|
|
<template>
|
|
<span class="flex-shrink-0 text-sm text-n-slate-11 whitespace-nowrap">
|
|
{{ t('CAMPAIGN.SMS.CARD.CAMPAIGN_DETAILS.SENT_FROM') }}
|
|
</span>
|
|
<div class="flex items-center gap-1.5 flex-shrink-0">
|
|
<Icon :icon="inboxIcon" class="flex-shrink-0 text-n-slate-12 size-3" />
|
|
<span class="text-sm font-medium text-n-slate-12">
|
|
{{ inboxName }}
|
|
</span>
|
|
</div>
|
|
|
|
<span class="flex-shrink-0 text-sm text-n-slate-11 whitespace-nowrap">
|
|
{{ t('CAMPAIGN.SMS.CARD.CAMPAIGN_DETAILS.ON') }}
|
|
</span>
|
|
<span class="flex-1 text-sm font-medium truncate text-n-slate-12">
|
|
{{ messageStamp(new Date(scheduledAt), 'LLL d, h:mm a') }}
|
|
</span>
|
|
</template>
|