Skip to content

Commit 6a70d21

Browse files
committed
fixing ruby 3 keyword argument errors on new rendering core method
1 parent 3c2cec2 commit 6a70d21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matestack/ui/core/base.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def render_content
7373
end
7474
result = ''
7575
if self.html_tag
76-
result = tag.public_send(self.html_tag, child_content, self.options || {})
76+
result = tag.public_send(self.html_tag, child_content, **self.options || {})
7777
elsif child_content
7878
result = child_content
7979
end

0 commit comments

Comments
 (0)