Skip to content

Commit

Permalink
Added account number
Browse files Browse the repository at this point in the history
  • Loading branch information
johndavedecano committed Sep 14, 2018
1 parent 7521e4e commit 88203df
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions resources/apps/frontend/src/pages/members/lists.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class Component extends React.Component {
}

get headers() {
return ['ID', 'Name', 'Email', 'Active', 'Admin', 'Updated', 'Actions'];
return ['ID', 'Name', 'Account#', 'Active', 'Admin', 'Updated', 'Actions'];
}

getTableActions() {}
Expand Down Expand Up @@ -106,8 +106,11 @@ class Component extends React.Component {
<td>{item.id}</td>
<td>
<Link to={`/members/${item.id}`}>{item.name}</Link>
<div>
<span className="small text-muted">{item.email}</span>
</div>
</td>
<td className="align-center">{item.email}</td>
<td className="align-center">{item.account_number}</td>
<td className="align-center text-center">
{item.is_active ? 'Yes' : 'No'}
</td>
Expand Down

0 comments on commit 88203df

Please sign in to comment.