Skip to content

Commit

Permalink
Eliminates an error introduced in the previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisDrogoul committed Mar 11, 2022
1 parent 8d8ab30 commit 974822c
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -156,7 +156,8 @@ public Object[] getFileChildren() {
if (wf.getNavigatorChildren().length > 0) { l.add(wf); }
}
if (!info.getTags().isEmpty()) {
final Tags wf = new Tags(this, StreamEx.of(info.getTags()).toMap(s -> null), "Tags", true);
final Tags wf =
new Tags(this, StreamEx.of(info.getTags()).toMap(s -> "Double-click to search"), "Tags", true);
if (wf.getNavigatorChildren().length > 0) { l.add(wf); }
}
return l.toArray();
Expand Down

0 comments on commit 974822c

Please sign in to comment.