Skip to content

Commit

Permalink
Fix search key in operator page
Browse files Browse the repository at this point in the history
  • Loading branch information
irees committed Jun 4, 2024
1 parent d0a8822 commit 80d0034
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/runtime/components/pages/entity-page-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default {
}
},
search() {
return this.searchKey.onestop_id === 'search'
return this.searchKey.onestopId === 'search'
},
entity() {
return (this.entities && this.entities.length > 0) ? this.entities[0] : null
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/pages/operator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
Onestop ID
</o-tooltip>
</td>
<td><tl-safelink :text="searchKey.onestop_id" /></td>
<td><tl-safelink :text="searchKey.onestopId" /></td>
</tr>
<tr>
<td>
Expand Down

0 comments on commit 80d0034

Please sign in to comment.