Skip to content

Commit

Permalink
rm duplicated panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Bob committed Jan 31, 2025
1 parent de5b32f commit 9e985c0
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions spec/dummy/app/avo/resources/user.rb
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,31 @@ def first_tabs_group
end
end

tab "Lazy loaded", lazy_load: true do
user_information_panel
tab "Address", lazy_load: true do
panel do
field :address, as: :heading
row do
field :street_address, stacked: true do
"1234 Elm Street"
end
field :city, stacked: true do
"Los Angeles"
end
end

field :state do
"California"
end

sidebar do
field :phone_number do
"+1 (555) 123-4567"
end
field :zip_code do
"90001"
end
end
end
end
end
end
Expand Down

0 comments on commit 9e985c0

Please sign in to comment.