Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions app/components/Package/TrendsChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1613,16 +1613,12 @@ watch(selectedMetric, value => {
{{ $t('package.trends.start_date') }}
</label>
<div class="relative flex items-center">
<span
class="absolute inset-is-2 i-lucide:calendar w-4 h-4 text-fg-subtle shrink-0 pointer-events-none"
aria-hidden="true"
/>
<InputBase
id="startDate"
v-model="startDate"
type="date"
:max="DATE_INPUT_MAX"
class="w-full min-w-0 bg-transparent ps-7"
class="w-full min-w-0 bg-transparent"
size="medium"
/>
</div>
Expand All @@ -1633,16 +1629,12 @@ watch(selectedMetric, value => {
{{ $t('package.trends.end_date') }}
</label>
<div class="relative flex items-center">
<span
class="absolute inset-is-2 i-lucide:calendar w-4 h-4 text-fg-subtle shrink-0 pointer-events-none"
aria-hidden="true"
/>
<InputBase
id="endDate"
v-model="endDate"
type="date"
:max="DATE_INPUT_MAX"
class="w-full min-w-0 bg-transparent ps-7"
class="w-full min-w-0 bg-transparent"
size="medium"
/>
</div>
Expand Down
Loading