From b53599ce5904f7ddf446d5a911b129cca4bfa78e Mon Sep 17 00:00:00 2001 From: pk Date: Tue, 23 Jun 2026 06:58:07 +0200 Subject: [PATCH] Add super call. --- package.json | 2 +- tp-tag-input.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 64cb91e..b11e5d5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tp/tp-tag-input", - "version": "1.1.0", + "version": "1.1.1", "description": "", "main": "tp-tag-input.js", "scripts": { diff --git a/tp-tag-input.js b/tp-tag-input.js index f0afe6e..990e578 100644 --- a/tp-tag-input.js +++ b/tp-tag-input.js @@ -145,6 +145,7 @@ class TpTagInput extends BaseElement { } firstUpdated() { + super.firstUpdated(); this.listen(this.$.innerInput, 'keydown', '_inputKeyDown'); this.listen(this.$.input, 'blur', '_inputBlur'); this.listen(this, 'focus', '_onFocus');