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