Compare commits
2 commits
9252c86f5c
...
aef59cfc0c
| Author | SHA1 | Date | |
|---|---|---|---|
| aef59cfc0c | |||
| ffb6d2da38 |
1 changed files with 5 additions and 5 deletions
|
|
@ -216,7 +216,7 @@ onMounted(() => {
|
|||
:key="option.value"
|
||||
:variant="dateRangeType === option.value ? 'default' : 'outline'"
|
||||
size="sm"
|
||||
class="h-7 md:h-8 px-3 text-xs"
|
||||
class="h-8 px-3 text-xs"
|
||||
@click="onDateRangeTypeChange(option.value)"
|
||||
:disabled="isLoading"
|
||||
>
|
||||
|
|
@ -232,7 +232,7 @@ onMounted(() => {
|
|||
:key="option.value"
|
||||
:variant="typeFilter === option.value ? 'default' : 'outline'"
|
||||
size="sm"
|
||||
class="h-7 md:h-8 px-3 text-xs"
|
||||
class="h-8 px-3 text-xs"
|
||||
@click="typeFilter = option.value"
|
||||
:disabled="isLoading"
|
||||
>
|
||||
|
|
@ -247,7 +247,7 @@ onMounted(() => {
|
|||
<Input
|
||||
type="date"
|
||||
v-model="customStartDate"
|
||||
class="h-7 md:h-8 text-xs"
|
||||
class="h-8 text-xs"
|
||||
:disabled="isLoading"
|
||||
/>
|
||||
</div>
|
||||
|
|
@ -256,13 +256,13 @@ onMounted(() => {
|
|||
<Input
|
||||
type="date"
|
||||
v-model="customEndDate"
|
||||
class="h-7 md:h-8 text-xs"
|
||||
class="h-8 text-xs"
|
||||
:disabled="isLoading"
|
||||
/>
|
||||
</div>
|
||||
<Button
|
||||
size="sm"
|
||||
class="h-7 md:h-8 px-3 text-xs"
|
||||
class="h-8 px-3 text-xs"
|
||||
@click="applyCustomDateRange"
|
||||
:disabled="isLoading || !customStartDate || !customEndDate"
|
||||
>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue