Skip to content

Commit

Permalink
fix(ui): typo in info message on node added
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Apr 12, 2024
1 parent ee50c0e commit a8aecb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -652,14 +652,14 @@ export default {
`<div class="d-flex flex-column align-center col">
<i aria-hidden="true" class="v-icon notranslate material-icons theme--light success--text" style="font-size: 60px;">check_circle</i>
<p class="mt-3 headline text-center">
Node ${node.id} added with security "${node.security || 'None'} ${
Node ${node.id} added with security ${node.security || 'None'}${
result.lowSecurityReason
? ` (${getEnumMemberName(
SecurityBootstrapFailure,
result.lowSecurityReason,
)})`
: ''
}"
}
</p>
</div>`,
'info',
Expand Down
2 changes: 1 addition & 1 deletion src/components/dialogs/DialogNodesManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1345,7 +1345,7 @@ export default {
const doneStep = copy(this.availableSteps.done)
doneStep.text = `Node ${
this.nodeFound.id
} added with security "${this.nodeFound.security || 'None'}"`
} added with security ${this.nodeFound.security || 'None'}`
doneStep.error = result.lowSecurityReason
? this.getSecurityBootstrapError(result.lowSecurityReason)
: false
Expand Down

0 comments on commit a8aecb7

Please sign in to comment.