Skip to content

Commit

Permalink
fix: Don'y copy subnet mask when clipboarding from address preview modal
Browse files Browse the repository at this point in the history
  • Loading branch information
mromulus committed Mar 13, 2024
1 parent 48fcebb commit 47bfea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/presenters/address_preview_presenter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def interfaces
mode: address.mode,
}.tap do |hash|
if address.fixed?
hash[:address] = address.ip_object(sequential_number, team_number).to_string
hash[:address] = address.ip_object(sequential_number, team_number).to_s
end
end
end
Expand Down

0 comments on commit 47bfea8

Please sign in to comment.