Skip to content

Commit

Permalink
Merge pull request #873 from leoendless/hotfix/nodeDetail
Browse files Browse the repository at this point in the history
fix: Fix node detail missing kind
  • Loading branch information
ks-ci-bot authored Jul 22, 2020
2 parents 61b3894 + ad7e500 commit 7cb98a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default class NodeStore extends Base {
const result = await request.get(
`${this.getResourceUrl(params)}/${params.name}`
)
const detail = { ...params, ...this.mapper(result) }
const detail = { ...params, ...this.mapper(result), kind: 'Node' }

this.detail = detail
this.isLoading = false
Expand Down

0 comments on commit 7cb98a8

Please sign in to comment.