File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
django_project/frontend/src
pages/Admin/Dashboard/Form/IndicatorLayers Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export const HelpPage = forwardRef(
37
37
38
38
useImperativeHandle ( ref , ( ) => ( {
39
39
open ( ) {
40
- return setOpen ( true )
40
+ return setOpen ( _ => ! _ )
41
41
}
42
42
} ) ) ;
43
43
Original file line number Diff line number Diff line change @@ -352,11 +352,12 @@ export default function IndicatorLayersForm() {
352
352
}
353
353
} else {
354
354
// If it is multi indicator
355
+ console . log ( layer )
355
356
return < div className = 'OtherActionFunctionsWrapper' >
356
357
< div className = 'LayerCountIndicatorWrapper' >
357
358
< div className = 'Separator' > </ div >
358
359
< div className = 'LayerCountIndicator' >
359
- { layer . indicators . length + ' Layers' }
360
+ { layer . indicators . length + ' Layers (' + ( layer . multi_indicator_mode ) + ') '}
360
361
</ div >
361
362
</ div >
362
363
< MultiIndicatorConfig
You can’t perform that action at this time.
0 commit comments