fixed cross filtering select

This commit is contained in:
Francesco Mangiacrapa 2023-05-31 17:15:04 +02:00
parent 33d6dbc89f
commit dcca1afba1
1 changed files with 2 additions and 2 deletions

View File

@ -273,7 +273,7 @@ public class CrossFilteringLayerPanel extends Composite {
private String placeholderLayer(LayerIDV layersIDV) { private String placeholderLayer(LayerIDV layersIDV) {
String placeholder = "Select"; String placeholder = "Select";
if (layersIDV != null) if (layersIDV != null)
placeholder += " " + layersIDV.getTitle() + "..."; placeholder += " " + layersIDV.getTitle();
placeholder += " ..."; placeholder += " ...";
return placeholder; return placeholder;
@ -357,7 +357,7 @@ public class CrossFilteringLayerPanel extends Composite {
*/ */
private void fillListBoxLevel(int level, HashMap<String, SelectableItem> mapSelectableFeatures, private void fillListBoxLevel(int level, HashMap<String, SelectableItem> mapSelectableFeatures,
List<ListBox> listBoxes, String placeholder) { List<ListBox> listBoxes, String placeholder) {
GWT.log("fillBox level: " + level + " map: " + mapSelectableFeatures); //GWT.log("fillBox level: " + level + " map: " + mapSelectableFeatures);
if (mapSelectableFeatures == null) if (mapSelectableFeatures == null)
return; return;