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">
<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>
<div class="flex-1 text-center text-base font-medium text-gray-700">
{{ formatMonth }}
</div>
<Button variant="ghost" class="h-7 w-7" @click="nextMonth">
<FeatherIcon
stroke-width="2"
:stroke-width="2"
name="chevron-right"
class="h-4 w-4"
/>

View File

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

View File

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

View File

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

View File

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

View File

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