From d1621e766069ae27ef01f9918fd4397cda6268b6 Mon Sep 17 00:00:00 2001 From: CalDescent <> Date: Thu, 3 Mar 2022 09:59:20 +0000 Subject: [PATCH] Fix/workaround for name selection bug when publishing data --- qortal-ui-plugins/plugins/core/qdn/publish/publish.src.js | 3 ++- 1 file changed, 2 insertions(+), 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 8caa1e43..5e03193a 100644 --- a/qortal-ui-plugins/plugins/core/qdn/publish/publish.src.js +++ b/qortal-ui-plugins/plugins/core/qdn/publish/publish.src.js @@ -102,6 +102,7 @@ class PublishData extends LitElement {

this.selectName(e)} style="min-width: 130px; max-width:100%; width:100%;"> + ${this.registeredName}

@@ -497,7 +498,7 @@ class PublishData extends LitElement { } selectName(e) { - const name = this.shadowRoot.getElementById('registeredName').innerHTML + const name = this.shadowRoot.getElementById('registeredName').value this.selectedName = name }