Skip to content

Commit

Permalink
Fix with rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
Nevelito committed Nov 19, 2024
1 parent 06a4962 commit 2361fb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/avo/resources/items/holder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def field(field_name, **args, &block)
add_item field_parser.instance
end

def tabs(tab = nil, id: nil, name: nil, title: nil, description: nil, **, &block)
def tabs(tab = nil, id: nil, name: nil, title: nil, description: nil, **args, &block)
if tab.present?
add_item tab
else
Expand All @@ -47,7 +47,7 @@ def tabs(tab = nil, id: nil, name: nil, title: nil, description: nil, **, &block
name: name,
title: title,
description: description,
**,
**args,
&block
)
end
Expand Down

0 comments on commit 2361fb6

Please sign in to comment.