Skip to content

Commit

Permalink
Merge pull request #112 from ror-community/staging
Browse files Browse the repository at this point in the history
Merge staging to master 404 UI patch
  • Loading branch information
lizkrznarich committed Nov 1, 2022
2 parents e5ddd6b + 038a1d9 commit 1108394
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/components/organization-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ export default Component.extend({
this.set('notFoundMsg', this.model.response_status[0])
}
}
if(this.INACTIVE_STATUSES.indexOf(this.model.get('status')) > -1) {
this.set('inactiveStatus', true)
}
if(this.notFound === false){
if(this.INACTIVE_STATUSES.indexOf(this.model.get('status')) > -1) {
this.set('inactiveStatus', true)
}
if(this.model.get('relationships')) {
this.set('relationshipsCount', this.model.get('relationships').length)
this.set('relationships', this.convertRelationships(this.model.get('relationships')))
Expand Down

0 comments on commit 1108394

Please sign in to comment.