Merge branch 'atomaka/bugfix/full-passive-skill' into 'development'
Show all relevant passive skill details Fix to issue #2 See merge request !8
This commit is contained in:
commit
70e44b948f
2 changed files with 7 additions and 2 deletions
|
@ -6,4 +6,8 @@ class PassiveSkill < ActiveRecord::Base
|
|||
uniqueness: { scope: :name }
|
||||
|
||||
default_scope { order(:name) }
|
||||
|
||||
def full
|
||||
"#{name} - #{description}"
|
||||
end
|
||||
end
|
||||
|
|
|
@ -17,8 +17,9 @@
|
|||
.row
|
||||
.col-md-6
|
||||
= f.association :leader_skill, label_method: :description
|
||||
.col-md-6
|
||||
= f.association :passive_skill
|
||||
.row
|
||||
.col-md-12
|
||||
= f.association :passive_skill, label_method: :full
|
||||
.row
|
||||
.col-md-12
|
||||
= f.association :super_attack, label_method: :full
|
||||
|
|
Loading…
Reference in a new issue