Skip to content

Commit

Permalink
BE-778 Fix typo in "Transaction Details" view (#147)
Browse files Browse the repository at this point in the history
Signed-off-by: Atsushi Neki <atsushin@fast.au.fujitsu.com>
  • Loading branch information
nekia authored Jul 20, 2020
1 parent f516d90 commit e190d0d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
"dict",
"dom",
"dropdown",
"Endoser",
"Endorser",
"enrolment",
"Enzyme",
"eslint",
Expand Down
8 changes: 7 additions & 1 deletion client/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@
"no-console": "off",
"react/prop-types": "off",
"no-undef": "off",
"react/react-in-jsx-scope": "off"
"react/react-in-jsx-scope": "off",
"object-curly-newline": [
"error",
{
"ImportDeclaration": "never"
}
]
},
"settings": {
"react": {
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/View/TransactionView.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export class TransactionView extends Component {
<td>{transaction.creator_msp_id}</td>
</tr>
<tr>
<th>Endoser:</th>
<th>Endorser:</th>
<td>{transaction.endorser_msp_id}</td>
</tr>
<tr>
Expand Down

0 comments on commit e190d0d

Please sign in to comment.