Skip to content

Commit

Permalink
[fix] add subclass
Browse files Browse the repository at this point in the history
  • Loading branch information
3rd-Eden committed Mar 3, 2017
1 parent 1b77b0d commit 3fbe140
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion components/emblem/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function Emblem(props) {
<div className='emblem' style={{'backgroundImage':'url(https://www.bungie.net/' + props.background + ')'}} >
<img src={ 'https://www.bungie.net/' + props.icon } />
<span className='name'>{ props.name }</span>
<span className='class'>{ props.className }</span>
<span className='class'>{ props.subclass }</span>
<span className='light'>{ props.lightlevel }</span>
<span className='kd'>{ props.kd }K/D</span>
</div>
Expand Down
1 change: 1 addition & 0 deletions components/fireteam/character.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export default class Character {
grimoire: +this.base.grimoire,
level: +this.character.characterLevel,
lightlevel: +this.base.powerLevel,
subclass: this.subclassName()
}
}

Expand Down

0 comments on commit 3fbe140

Please sign in to comment.