chore: minor fix

This commit is contained in:
Shariq Ansari 2024-06-03 19:28:48 +05:30
parent 0e14b68299
commit c2217eccf5
6 changed files with 9 additions and 13 deletions

View File

@ -23,14 +23,14 @@
> >
<div class="flex items-center p-1 text-gray-500"> <div class="flex items-center p-1 text-gray-500">
<Button variant="ghost" class="h-7 w-7" @click="prevMonth"> <Button variant="ghost" class="h-7 w-7" @click="prevMonth">
<FeatherIcon stroke-width="2" name="chevron-left" class="h-4 w-4" /> <FeatherIcon :stroke-width="2" name="chevron-left" class="h-4 w-4" />
</Button> </Button>
<div class="flex-1 text-center text-base font-medium text-gray-700"> <div class="flex-1 text-center text-base font-medium text-gray-700">
{{ formatMonth }} {{ formatMonth }}
</div> </div>
<Button variant="ghost" class="h-7 w-7" @click="nextMonth"> <Button variant="ghost" class="h-7 w-7" @click="nextMonth">
<FeatherIcon <FeatherIcon
stroke-width="2" :stroke-width="2"
name="chevron-right" name="chevron-right"
class="h-4 w-4" class="h-4 w-4"
/> />

View File

@ -22,14 +22,14 @@
> >
<div class="flex items-center p-1 text-gray-500"> <div class="flex items-center p-1 text-gray-500">
<Button variant="ghost" class="h-7 w-7" @click="prevMonth"> <Button variant="ghost" class="h-7 w-7" @click="prevMonth">
<FeatherIcon stroke-width="2" name="chevron-left" class="h-4 w-4" /> <FeatherIcon :stroke-width="2" name="chevron-left" class="h-4 w-4" />
</Button> </Button>
<div class="flex-1 text-center text-base font-medium text-gray-700"> <div class="flex-1 text-center text-base font-medium text-gray-700">
{{ formatMonth }} {{ formatMonth }}
</div> </div>
<Button variant="ghost" class="h-7 w-7" @click="nextMonth"> <Button variant="ghost" class="h-7 w-7" @click="nextMonth">
<FeatherIcon <FeatherIcon
stroke-width="2" :stroke-width="2"
name="chevron-right" name="chevron-right"
class="h-4 w-4" class="h-4 w-4"
/> />

View File

@ -20,14 +20,14 @@
> >
<div class="flex items-center p-1 text-gray-500"> <div class="flex items-center p-1 text-gray-500">
<Button variant="ghost" class="h-7 w-7" @click="prevMonth"> <Button variant="ghost" class="h-7 w-7" @click="prevMonth">
<FeatherIcon stroke-width="2" name="chevron-left" class="h-4 w-4" /> <FeatherIcon :stroke-width="2" name="chevron-left" class="h-4 w-4" />
</Button> </Button>
<div class="flex-1 text-center text-base font-medium text-gray-700"> <div class="flex-1 text-center text-base font-medium text-gray-700">
{{ formatMonth }} {{ formatMonth }}
</div> </div>
<Button variant="ghost" class="h-7 w-7" @click="nextMonth"> <Button variant="ghost" class="h-7 w-7" @click="nextMonth">
<FeatherIcon <FeatherIcon
stroke-width="2" :stroke-width="2"
name="chevron-right" name="chevron-right"
class="h-4 w-4" class="h-4 w-4"
/> />

View File

@ -124,7 +124,7 @@ import { useRouter } from 'vue-router'
const props = defineProps({ const props = defineProps({
name: { name: {
type: Object, type: String,
default: {}, default: {},
}, },
}) })

View File

@ -60,7 +60,7 @@
type="textarea" type="textarea"
variant="outline" variant="outline"
ref="content" ref="content"
rows="10" :rows="10"
v-model="_emailTemplate.response_html" v-model="_emailTemplate.response_html"
:placeholder=" :placeholder="
__( __(

View File

@ -50,11 +50,7 @@
<span>{{ __('No {0} Found', [__('Logs')]) }}</span> <span>{{ __('No {0} Found', [__('Logs')]) }}</span>
</div> </div>
</div> </div>
<CallLogModal <CallLogModal v-model="showCallLogModal" :name="selectedCallLog" />
v-model="showCallLogModal"
v-model:reloadCallLogs="callLogs"
:name="selectedCallLog"
/>
</template> </template>
<script setup> <script setup>