bug_24754 #12
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
## [v1.0.4] - 2023-03-06
|
## [v1.0.4] - 2023-03-06
|
||||||
- Fixed the import from joda-time to java.time
|
- Fixed the import from joda-time to java.time
|
||||||
- [#24702] Fixed the default-lc-managers dependency
|
- [#24702] Fixed the default-lc-managers dependency
|
||||||
|
- Fixed log
|
||||||
|
|
||||||
## [v1.0.3] - 2023-01-24
|
## [v1.0.3] - 2023-01-24
|
||||||
- Fixes [#24476](https://support.d4science.org/issues/24476)
|
- Fixes [#24476](https://support.d4science.org/issues/24476)
|
||||||
|
|
|
@ -236,7 +236,7 @@ public class SDIIndexerPlugin extends SDIAbstractPlugin implements IndexerPlugin
|
||||||
if(requestArguments.containsKey("_toDisplayIds")){
|
if(requestArguments.containsKey("_toDisplayIds")){
|
||||||
List<String> ids = Serialization.convert(requestArguments.get("_toDisplayIds"),List.class);
|
List<String> ids = Serialization.convert(requestArguments.get("_toDisplayIds"),List.class);
|
||||||
|
|
||||||
log.info("Requested to hide centroids {} ",ids);
|
log.info("Requested to display centroids {} ",ids);
|
||||||
indexer.updateIsVisible(true,ids);
|
indexer.updateIsVisible(true,ids);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue