Skip to content

Commit 937e636

Browse files
committed
Merge branch 'develop'
2 parents ac7f92d + 3a0c472 commit 937e636

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

app/cells/plugins/core/tree_cell.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,13 @@ def render_select
2020
end
2121

2222
def metadata_values
23+
values = [["-- Select an Option --", nil]]
24+
2325
@options[:metadata]["data"]["tree_array"].map do |value|
24-
[value["node"]["name"], value["id"]]
26+
values << [value["node"]["name"], value["id"]]
2527
end
28+
29+
values
2630
end
2731
end
2832
end

lib/cortex/plugins/core/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Cortex
22
module Plugins
33
module Core
4-
VERSION = '0.10.0'
4+
VERSION = '0.10.1'
55
end
66
end
77
end

0 commit comments

Comments
 (0)