Skip to content

Commit f92092e

Browse files
khochihuahua
authored andcommitted
Change default value of tag filters to empty (#643)
Fixes #270.
1 parent e75af80 commit f92092e

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Diff for: tensorboard/plugins/audio/tf_audio_dashboard/tf-audio-dashboard.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ <h3>No audio data was found.</h3>
124124

125125
_tagFilter: {
126126
type: String, // upward bound from paper-input
127-
value: '.*',
127+
value: '',
128128
},
129129
_categories: {
130130
type: Array,

Diff for: tensorboard/plugins/distribution/tf_distribution_dashboard/tf-distribution-dashboard.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ <h3>No distribution data was found.</h3>
150150

151151
_tagFilter: {
152152
type: String, // upward bound from paper-input
153-
value: '.*',
153+
value: '',
154154
},
155155
_categories: {
156156
type: Array,

Diff for: tensorboard/plugins/histogram/tf_histogram_dashboard/tf-histogram-dashboard.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ <h3>No histogram data was found.</h3>
162162

163163
_tagFilter: {
164164
type: String, // upward bound from paper-input
165-
value: '.*',
165+
value: '',
166166
},
167167
_categories: {
168168
type: Array,

Diff for: tensorboard/plugins/image/tf_image_dashboard/tf-image-dashboard.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ <h3>No image data was found.</h3>
136136

137137
_tagFilter: {
138138
type: String, // upward bound from paper-input
139-
value: '.*',
139+
value: '',
140140
},
141141
_categories: {
142142
type: Array,

Diff for: tensorboard/plugins/pr_curve/tf_pr_curve_dashboard/tf-pr-curve-dashboard.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ <h3>No precision–recall curve data was found.</h3>
181181
_dataNotFound: Boolean,
182182
_tagFilter: {
183183
type: String, // upward bound from paper-input
184-
value: '.*',
184+
value: '',
185185
},
186186
_categories: {
187187
type: Array,

Diff for: tensorboard/plugins/scalar/tf_scalar_dashboard/tf-scalar-dashboard.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ <h3>No scalar data was found.</h3>
243243

244244
_tagFilter: {
245245
type: String, // upward bound from paper-input
246-
value: '.*',
246+
value: '',
247247
},
248248
_categories: {
249249
type: Array,

Diff for: tensorboard/plugins/text/tf_text_dashboard/tf-text-dashboard.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ <h3>No text data was found.</h3>
118118

119119
_tagFilter: {
120120
type: String, // upward bound from paper-input
121-
value: '.*',
121+
value: '',
122122
},
123123
_categories: {
124124
type: Array,

0 commit comments

Comments
 (0)