We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5458b5a commit af8aae7Copy full SHA for af8aae7
dashboard/index.html
@@ -277,12 +277,17 @@ <h3 class="title is-size-4" style="color:#1B120D">Dashboard</h3>
277
278
279
<td>
280
- <div class="select">
281
- <select @change="changeToxic('stream', $event.target.value)" v-bind:value="stream">
282
- <option>downstream</option>
283
- <option>upstream</option>
284
- </select>
285
- </div>
+ <template v-if="newToxic">
+ <div class="select">
+ <select @change="changeToxic('stream', $event.target.value)" v-bind:value="stream">
+ <option>downstream</option>
+ <option>upstream</option>
+ </select>
286
+ </div>
287
+ </template>
288
+ <template v-else>
289
+ {{ stream }}
290
291
</td>
292
293
0 commit comments