style: modify license binding display information (#10918)

Refs #10895
This commit is contained in:
ssongliu 2025-11-11 14:24:40 +08:00 committed by GitHub
parent 2c18382f46
commit 42cee513e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}
}
}