From f65779d13e80403715c359391db8caadb98ee23b Mon Sep 17 00:00:00 2001 From: CalDescent <> Date: Tue, 15 Mar 2022 22:41:37 +0000 Subject: [PATCH] Fixed bug which prevented previous metadata from being loaded when updating a website. --- qortal-ui-plugins/plugins/core/qdn/publish/publish.src.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qortal-ui-plugins/plugins/core/qdn/publish/publish.src.js b/qortal-ui-plugins/plugins/core/qdn/publish/publish.src.js index aa068359..734858ea 100644 --- a/qortal-ui-plugins/plugins/core/qdn/publish/publish.src.js +++ b/qortal-ui-plugins/plugins/core/qdn/publish/publish.src.js @@ -589,7 +589,7 @@ class PublishData extends LitElement { let name = this.shadowRoot.getElementById('registeredName') this.selectedName = (name.value) // Update the current name if one has been selected - if (name.length > 0) { + if (name.value.length > 0) { this.name = (name.value) } this.fetchResourceMetadata();