diff --git a/src/components/RidgelinePlot.vue b/src/components/RidgelinePlot.vue index 1cc96fb..251e6ca 100644 --- a/src/components/RidgelinePlot.vue +++ b/src/components/RidgelinePlot.vue @@ -3,7 +3,7 @@ id="chartWrapper" class="m-50" :data-test="JSON.stringify({ - histogramDataRowCount: histogramData.length, + histogramDataRowCount: dataStore.histogramData.length, x: appStore.dimensions.x, y: appStore.dimensions.y, withinBand: appStore.dimensions.withinBand, @@ -12,21 +12,20 @@

If a plot were plotted, it would have:

{{ key }} axis: {{ value ?? "none" }}

- Location resolutions in use: {{ geographicalResolutions.join(", ") }} + Location resolutions in use: {{ dataStore.geographicalResolutions.join(", ") }}

-

Data rows: {{ histogramData.length }}

-

Errors: {{ fetchErrors }}

+

Data rows: {{ dataStore.histogramData.length }}

+

Errors: {{ dataStore.fetchErrors }}