From b722435a88dc93733419c38625256c2fd22aac3d Mon Sep 17 00:00:00 2001 From: Emma Date: Wed, 21 Sep 2022 02:01:00 -0400 Subject: [PATCH] Calling updateVisibleDataList on inputData update (#2601) --- src/renderer/components/ft-input/ft-input.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/renderer/components/ft-input/ft-input.js b/src/renderer/components/ft-input/ft-input.js index ca58efff..6e7869d9 100644 --- a/src/renderer/components/ft-input/ft-input.js +++ b/src/renderer/components/ft-input/ft-input.js @@ -92,6 +92,11 @@ export default Vue.extend({ if (val !== oldVal) { this.updateVisibleDataList() } + }, + inputData(val, oldVal) { + if (val !== oldVal) { + this.updateVisibleDataList() + } } }, mounted: function () {