File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1717 - The same SQLPage application can now have both publicly accessible and private pages accessible to users authenticated with SSO.
1818 - This allows easily creating a "log in page" that redirects to the OIDC provider.
1919 - See the [ configuration] ( ./configuration.md ) for ` oidc_protected_paths `
20+ - Chart component: accept numerical values passed as strings in pie charts.
2021
2122## v0.35.2
2223 - Fix a bug with zero values being displayed with a non-zero height in stacked bar charts.
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ sqlpage_chart = (() => {
129129 series . length > 0 && typeof series [ 0 ] . data [ 0 ] . x === "string" ;
130130 if ( data . type === "pie" ) {
131131 labels = data . points . map ( ( [ name , x , y ] ) => x || name ) ;
132- series = data . points . map ( ( [ name , x , y ] ) => y ) ;
132+ series = data . points . map ( ( [ name , x , y ] ) => Number . parseFloat ( y ) ) ;
133133 } else if ( categories && data . type === "bar" && series . length > 1 )
134134 series = align_categories ( series ) ;
135135
You can’t perform that action at this time.
0 commit comments