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">
|
<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"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -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"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -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"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -124,7 +124,7 @@ import { useRouter } from 'vue-router'
|
|||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
name: {
|
name: {
|
||||||
type: Object,
|
type: String,
|
||||||
default: {},
|
default: {},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|||||||
@ -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="
|
||||||
__(
|
__(
|
||||||
|
|||||||
@ -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>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user