We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be21311 commit 7982c90Copy full SHA for 7982c90
app/components/Package/TrendsChart.vue
@@ -1895,7 +1895,10 @@ watch(selectedMetric, value => {
1895
:class="{ 'opacity-50 pointer-events-none': !hasAnomalies }"
1896
>
1897
<input
1898
- v-model="settings.chartFilter.anomaliesFixed"
+ :checked="settings.chartFilter.anomaliesFixed && hasAnomalies"
1899
+ @change="
1900
+ settings.chartFilter.anomaliesFixed = ($event.target as HTMLInputElement).checked
1901
+ "
1902
type="checkbox"
1903
:disabled="!hasAnomalies"
1904
class="accent-[var(--accent-color,var(--fg-subtle))]"
0 commit comments