Skip to content

Commit

Permalink
Fixed Type displayed in certifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Jun 11, 2021
1 parent f5a870f commit 6d31b1c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions certifying_client/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const loggedInNav = () => {
const links = [
['/create', 'Add Asset'],
['/assets', 'View Assets'],
['/agents', 'View Manufacturers']
['/agents', 'View Agents']
]
return m(navigation.Navbar, {}, [
navigation.links(links),
Expand All @@ -64,7 +64,7 @@ const loggedInNav = () => {
const loggedOutNav = () => {
const links = [
['/assets', 'View Assets'],
['/agents', 'View Manufacturers']
['/agents', 'View Agents']
]
return m(navigation.Navbar, {}, [
navigation.links(links),
Expand Down
6 changes: 3 additions & 3 deletions certifying_client/src/views/list_agents.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const AgentList = {
'Owns',
'Custodian',
'Reports',
'type'
//'type'
],
rows: vnode.state.filteredAgents.slice(
vnode.state.currentPage * PAGE_SIZE,
Expand All @@ -71,13 +71,13 @@ const AgentList = {
agent.owns.length,
agent.custodian.length,
agent.reports.length,
agent.type
//agent.type
]
} else {
return []
}
}),
noRowsText: 'No manufacturers found'
noRowsText: 'No Agents found'
})
)
]
Expand Down

0 comments on commit 6d31b1c

Please sign in to comment.