Skip to content
Merged
Changes from 1 commit
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
3 changes: 1 addition & 2 deletions app/components/Package/TrendsChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1433,6 +1433,7 @@ watch(selectedMetric, value => {
v-if="showFacetSelector"
id="trends-metric-select"
v-model="selectedMetric"
:disabled="activeMetricState.pending"
:items="METRICS.map(m => ({ label: m.label, value: m.id }))"
:label="$t('package.trends.facet')"
/>
Expand Down Expand Up @@ -1466,7 +1467,6 @@ watch(selectedMetric, value => {
<InputBase
id="startDate"
v-model="startDate"
:disabled="activeMetricState.pending"
type="date"
class="w-full min-w-0 bg-transparent ps-7"
size="medium"
Expand All @@ -1486,7 +1486,6 @@ watch(selectedMetric, value => {
<InputBase
id="endDate"
v-model="endDate"
:disabled="activeMetricState.pending"
type="date"
class="w-full min-w-0 bg-transparent ps-7"
size="medium"
Expand Down
Loading