diff --git a/src/dbp-annotation-view.js b/src/dbp-annotation-view.js
index 2ed99995bd5c3968a77d0f7a1f61322e00f80f17..2e165d329cfea09c968f5ec53ce9a369ab990a23 100644
--- a/src/dbp-annotation-view.js
+++ b/src/dbp-annotation-view.js
@@ -278,13 +278,13 @@ export class AnnotationView extends ScopedElementsMixin(DBPLitElement) {
                         <dbp-organization-select subscribe="lang:lang,entry-point-url:entry-point-url,auth:auth"
                                 value="${data.organizationNumber}"
                                 @change=${e => { this.updateAnnotation(id, 'organizationNumber', JSON.parse(e.target.getAttribute("data-object")).alternateName); }}></dbp-organization-select>
-                        <input type="text" class="input" placeholder="${i18n.t('annotation-view.businessnumber-placeholder')}" @change=${e => { this.updateAnnotation(id, 'value', e.target.value) }}>
+                        <input type="text" class="input" placeholder="${i18n.t('annotation-view.businessnumber-placeholder')}" @change=${e => { this.updateAnnotation(id, 'value', e.target.value); }}>
                         <button class="button close" 
                             title="${i18n.t('annotation-view.remove-field')}" 
                             @click="${() => { this.removeAnnotation(id); } }">
                             <dbp-icon name="trash"></dbp-icon></button>
                     </div>
-                `)
+                `);
             } else {
                 results.push(html`
                     <div class="annotation-block-${this.key}-${id}">
@@ -295,7 +295,7 @@ export class AnnotationView extends ScopedElementsMixin(DBPLitElement) {
                             @click="${() => { this.removeAnnotation(id); } }">
                             <dbp-icon name="trash"></dbp-icon></button>
                     </div>
-                `)
+                `);
             }
        });
 
diff --git a/src/dbp-signature-lit-element.js b/src/dbp-signature-lit-element.js
index a03d5b154695424445ef10f5a504b95db965c0ae..4e6c885377fa706e94e64d308b3c34b9a2db7eba 100644
--- a/src/dbp-signature-lit-element.js
+++ b/src/dbp-signature-lit-element.js
@@ -116,7 +116,7 @@ export default class DBPSignatureLitElement extends DBPSignatureBaseLitElement {
      * 
      * @param {*} key 
      * @param {*} name 
-     * @returns 
+     * @returns shows AnnotationView
      */
     async showAnnotationView(key, name) {
         if (this.signingProcessEnabled) {