chore: Adjust Chatwoot Config to deploy frontend as a separate app (#2347)

This commit is contained in:
Pranav Raj S 2021-05-28 19:21:16 +05:30 committed by GitHub
parent 3b39eb3e33
commit 25ba852b68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 53 additions and 60 deletions

View file

@ -1,21 +1,23 @@
<template>
<div class="inbox-item" >
<img src="~dashboard/assets/images/no_page_image.png" alt="No Page Image"/>
<div class="inbox-item">
<img src="~dashboard/assets/images/no_page_image.png" alt="No Page Image" />
<div class="item--details columns">
<h4 class="item--name">{{ inbox.label }}</h4>
<p class="item--sub">Facebook</p>
<h4 class="item--name">
{{ inbox.label }}
</h4>
<p class="item--sub">
Facebook
</p>
</div>
<!-- <span class="ion-chevron-right arrow"></span> -->
</div>
</template>
<script>
/* eslint no-console: 0 */
/* global bus */
// import WootSwitch from '../ui/Switch';
export default {
props: ['inbox'],
created() {
},
created() {},
};
</script>