Skip to content

Commit 5cecc14

Browse files
committed
fix: use of deprecated property
1 parent 708f978 commit 5cecc14

File tree

1 file changed

+1
-1
lines changed
  • fusion-studio-extension/src/browser

1 file changed

+1
-1
lines changed

fusion-studio-extension/src/browser/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1421,7 +1421,7 @@ export class FSCore {
14211421
if (this.node && FSNode.isConnection(this.node)) {
14221422
const node = this.node as FSConnectionNode;
14231423
const msg = document.createElement('p');
1424-
msg.innerHTML = 'Are you sure you want to remove the connection: <strong>' + node.connectionNode.name + '</strong>?<br/>' +
1424+
msg.innerHTML = 'Are you sure you want to remove the connection: <strong>' + node.connectionNode.nodeName + '</strong>?<br/>' +
14251425
'Server URI: <strong>' + node.connectionNode.connection.server + '</strong><br/>' +
14261426
'Username: <strong>' + node.connectionNode.connection.username + '</strong>';
14271427
const dialog = new ConfirmDialog({

0 commit comments

Comments
 (0)