From 85d413a8ea7d419b71326d2f1fac883eecb80984 Mon Sep 17 00:00:00 2001 From: Jordan Jones Date: Thu, 19 Dec 2024 12:48:53 -0800 Subject: [PATCH] perf: reflect value attribute onto component --- components/input/src/base-input.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/components/input/src/base-input.js b/components/input/src/base-input.js index a91e9cf9..68918363 100644 --- a/components/input/src/base-input.js +++ b/components/input/src/base-input.js @@ -158,7 +158,10 @@ export default class BaseInput extends LitElement { name: { type: String }, type: { type: String, reflect: true }, - value: { type: String }, + value: { + type: String, + reflect: true + }, lang: { type: String }, pattern: { type: String,