From a6b7c3acb5cc25a8c575fff89a11a6fc1db41f67 Mon Sep 17 00:00:00 2001 From: ssongliu Date: Tue, 11 Nov 2025 13:56:18 +0800 Subject: [PATCH] style: modify license binding display information --- frontend/src/views/setting/license/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/setting/license/index.vue b/frontend/src/views/setting/license/index.vue index 0d17f33b3630..0350e78ce74b 100644 --- a/frontend/src/views/setting/license/index.vue +++ b/frontend/src/views/setting/license/index.vue @@ -170,7 +170,7 @@ const loadBindNode = (row: any) => { if (row.freeNodes) { for (const item of row.freeNodes) { if (item.addr === row.bindNode) { - return item.name === 'local' ? globalStore.getMasterAlias() : item.addr; + return item.name === 'local' ? globalStore.getMasterAlias() : item.name; } } }