From 40f583dd7607ba876a11b65bb6ea5b8399e16512 Mon Sep 17 00:00:00 2001 From: iosonosempreio Date: Tue, 20 Feb 2024 14:29:41 +0100 Subject: [PATCH] Fix voronoi category The model voronoi had "Correlations" with capital initial, causing the dropdown menu of templates categories to have two "correlations" elements because in other models is spelled in small case. The fix should solve the interface problem. --- src/voronoidiagram/metadata.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/voronoidiagram/metadata.js b/src/voronoidiagram/metadata.js index 3f263743..5ce995b6 100644 --- a/src/voronoidiagram/metadata.js +++ b/src/voronoidiagram/metadata.js @@ -6,7 +6,7 @@ export const metadata = { id: 'rawgraphs.voronoidiagram', thumbnail, icon, - categories: ['Correlations'], + categories: ['correlations'], description: 'It creates the minimum area around each point defined by two variables. When applied to a scatterplot, it is useful to show the distance between points.', code: 'https://github.com/rawgraphs/rawgraphs-charts/tree/master/src/voronoidiagram',