Fix lints

This commit is contained in:
KMY 2023-08-25 13:03:00 +09:00
parent b747d97b79
commit fc9303b843
2 changed files with 2 additions and 2 deletions

View file

@ -121,7 +121,7 @@ class Antenna < ApplicationRecord
end
def tags_raw
antenna_tags.where(exclude: false).map(&:tag).map(&:name).join("\n")
antenna_tags.where(exclude: false).map { |tag| tag.tag.name }.join("\n")
end
def tags_raw=(raw)