Commit 98d37e9c authored by Chunchi Che's avatar Chunchi Che

fix lscales

parent 72f777c1
Pipeline #23600 passed with stages
in 13 minutes and 27 seconds
...@@ -23,9 +23,9 @@ const levels = Array.from({ length: 12 }, (_, index) => ({ ...@@ -23,9 +23,9 @@ const levels = Array.from({ length: 12 }, (_, index) => ({
label: (index + 1).toString(), label: (index + 1).toString(),
})); }));
const lscales = Array.from({ length: 12 }, (_, index) => ({ const lscales = Array.from({ length: 14 }, (_, index) => ({
value: index + 1, value: index,
label: (index + 1).toString(), label: index.toString(),
})); }));
export const Filter: React.FC<{ export const Filter: React.FC<{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment