Skip to content

Commit

Permalink
Change default value of tag filters to empty (#643)
Browse files Browse the repository at this point in the history
Fixes #270.
  • Loading branch information
kho authored and chihuahua committed Oct 13, 2017
1 parent e75af80 commit f92092e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ <h3>No audio data was found.</h3>

_tagFilter: {
type: String, // upward bound from paper-input
value: '.*',
value: '',
},
_categories: {
type: Array,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ <h3>No distribution data was found.</h3>

_tagFilter: {
type: String, // upward bound from paper-input
value: '.*',
value: '',
},
_categories: {
type: Array,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ <h3>No histogram data was found.</h3>

_tagFilter: {
type: String, // upward bound from paper-input
value: '.*',
value: '',
},
_categories: {
type: Array,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ <h3>No image data was found.</h3>

_tagFilter: {
type: String, // upward bound from paper-input
value: '.*',
value: '',
},
_categories: {
type: Array,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ <h3>No precision–recall curve data was found.</h3>
_dataNotFound: Boolean,
_tagFilter: {
type: String, // upward bound from paper-input
value: '.*',
value: '',
},
_categories: {
type: Array,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ <h3>No scalar data was found.</h3>

_tagFilter: {
type: String, // upward bound from paper-input
value: '.*',
value: '',
},
_categories: {
type: Array,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ <h3>No text data was found.</h3>

_tagFilter: {
type: String, // upward bound from paper-input
value: '.*',
value: '',
},
_categories: {
type: Array,
Expand Down

0 comments on commit f92092e

Please sign in to comment.