task_25066 #15

Merged
francesco.mangiacrapa merged 18 commits from task_25066 into master 2023-06-09 10:37:46 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit dcca1afba1 - Show all commits

View File

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