Skip to content

Commit 15b4199

Browse files
committed
Pass defaultValue parameter to z.select
1 parent 3d4dc43 commit 15b4199

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spark/src/main/java/org/apache/zeppelin/spark/ZeppelinContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public Object select(String name, Object defaultValue,
220220
paramOptions[i++] = new ParamOption(valueAndDisplayValue._1(), valueAndDisplayValue._2());
221221
}
222222

223-
return gui.select(name, "", paramOptions);
223+
return gui.select(name, defaultValue, paramOptions);
224224
}
225225

226226
public void setGui(GUI o) {

0 commit comments

Comments
 (0)