Skip to content

Commit

Permalink
Fixing claim list alignment issues and renaming did to persona in the…
Browse files Browse the repository at this point in the history
… table header
  • Loading branch information
mudlee committed Oct 8, 2019
1 parent d5777b2 commit 552d041
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/claimlist/ClaimList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export default {
},
getTableFields() {
if (this.showDidLabel) {
return ['name', 'value', 'did', 'signatures', 'actions'];
return ['name', 'value', 'persona', 'signatures'];
}
return ['name', 'value', 'details', 'signatures'];
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/claimlist/ClaimTableItems.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const getClaimTableItems = (claims, schemas, searchTerm, showDidLabel) => claims
};

if (showDidLabel) {
row.did = claim.subject_label;
row.persona = claim.subject_label;
}

return row;
Expand Down

0 comments on commit 552d041

Please sign in to comment.