diff --git a/src/App.vue b/src/App.vue
index 9470520226b..8eea1e7c85c 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -652,14 +652,14 @@ export default {
`
check_circle
- Node ${node.id} added with security "${node.security || 'None'} ${
+ Node ${node.id} added with security ${node.security || 'None'}${
result.lowSecurityReason
? ` (${getEnumMemberName(
SecurityBootstrapFailure,
result.lowSecurityReason,
)})`
: ''
- }"
+ }
`,
'info',
diff --git a/src/components/dialogs/DialogNodesManager.vue b/src/components/dialogs/DialogNodesManager.vue
index 1b523fcdc9e..42766f20bb0 100644
--- a/src/components/dialogs/DialogNodesManager.vue
+++ b/src/components/dialogs/DialogNodesManager.vue
@@ -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