Skip to content

Commit

Permalink
Adjust boolean handling for patching lava shortcodes (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
nthj authored Oct 23, 2023
1 parent 4434e90 commit b44ed41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/rock_rms/resources/lava_shortcode.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ def update_lava_shortcode(
options['Name'] = name if name
options['Description'] = description if description
options['Documentation'] = documentation if documentation
options['IsActive'] = active if active
options['IsSystem'] = is_system if is_system
options['IsActive'] = active unless active.nil?
options['IsSystem'] = is_system unless is_system.nil?
options['Markup'] = markup if markup
options['Parameters'] = parameters if parameters
options['TagName'] = tag_name if tag_name
Expand Down
2 changes: 1 addition & 1 deletion lib/rock_rms/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RockRMS
VERSION = '8.15.0'.freeze
VERSION = '8.15.1'.freeze
end

0 comments on commit b44ed41

Please sign in to comment.