From e0f365c9bb931db9eeffa72f985d749008c6f253 Mon Sep 17 00:00:00 2001 From: M Starch Date: Mon, 25 Nov 2024 15:25:41 -0800 Subject: [PATCH] Clear fliter on transition in/out of filters. Fixes: nasa/fprime#2476 --- src/fprime_gds/flask/static/js/vue-support/fptable.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/fprime_gds/flask/static/js/vue-support/fptable.js b/src/fprime_gds/flask/static/js/vue-support/fptable.js index 90f721e8..b1ba8625 100644 --- a/src/fprime_gds/flask/static/js/vue-support/fptable.js +++ b/src/fprime_gds/flask/static/js/vue-support/fptable.js @@ -354,6 +354,7 @@ Vue.component("fp-table", { */ saveView: function() { this.editing = false; + this.matching = ""; setTimeout(this.send, 10); // Force refresh when no data is available }, /** @@ -361,6 +362,7 @@ Vue.component("fp-table", { */ editViews: function () { this.editing = true; + this.matching = ""; setTimeout(this.send, 10); // Force refresh when no data is available }, /**