chore: minor fix
This commit is contained in:
parent
0e14b68299
commit
c2217eccf5
@ -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"
|
||||
/>
|
||||
|
||||
@ -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"
|
||||
/>
|
||||
|
||||
@ -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"
|
||||
/>
|
||||
|
||||
@ -124,7 +124,7 @@ import { useRouter } from 'vue-router'
|
||||
|
||||
const props = defineProps({
|
||||
name: {
|
||||
type: Object,
|
||||
type: String,
|
||||
default: {},
|
||||
},
|
||||
})
|
||||
|
||||
@ -60,7 +60,7 @@
|
||||
type="textarea"
|
||||
variant="outline"
|
||||
ref="content"
|
||||
rows="10"
|
||||
:rows="10"
|
||||
v-model="_emailTemplate.response_html"
|
||||
:placeholder="
|
||||
__(
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user