aboutsummaryrefslogtreecommitdiff
path: root/src/components/search/search.js
diff options
context:
space:
mode:
authortaehoon <th.dev91@gmail.com>2019-08-09 23:48:08 -0400
committertaehoon <th.dev91@gmail.com>2019-08-15 13:25:38 -0400
commitdf3e80b7c3fc91cbd62764be467d1dfe28b4b299 (patch)
tree266b9addd6c988322da35a291cb6d9dbf5c6b00e /src/components/search/search.js
parentcd14566a34013e65b603a71208d058871e992956 (diff)
use key prop instead of dataset to identify active tab
Diffstat (limited to 'src/components/search/search.js')
-rw-r--r--src/components/search/search.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/search/search.js b/src/components/search/search.js
index 37940f34..8e903052 100644
--- a/src/components/search/search.js
+++ b/src/components/search/search.js
@@ -75,8 +75,8 @@ const Search = {
const length = this[tabName].length
return length === 0 ? '' : ` (${length})`
},
- onResultTabSwitch (dataset) {
- this.currenResultTab = dataset.filter
+ onResultTabSwitch (key) {
+ this.currenResultTab = key
},
getActiveTab () {
if (this.visibleStatuses.length > 0) {