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 75c4660 commit e5eb2faCopy full SHA for e5eb2fa
jdaviz/configs/specviz2d/plugins/spectral_extraction/spectral_extraction.vue
@@ -112,7 +112,7 @@
112
type="number"
113
v-model.number="trace_bins"
114
:rules="[() => trace_bins!=='' || 'This field is required',
115
- () => trace_bins>=4 || 'Bins must be >= 4']"
+ () => trace_bins>=Math.max(4, trace_order+1) || 'Bins must be >= '+Math.max(4, trace_order+1)]"
116
hint="Number of bins in the dispersion direction."
117
persistent-hint
118
>
0 commit comments