|
@@ -16,7 +16,8 @@
|
|
|
|
|
|
<button-row class="media-control">
|
|
<button-row class="media-control">
|
|
<button-input type="primary"
|
|
<button-input type="primary"
|
|
- style="color: var(--on_error)">
|
|
|
|
|
|
+ style="color: var(--on_error)"
|
|
|
|
+ @click="reset">
|
|
Reset
|
|
Reset
|
|
</button-input>
|
|
</button-input>
|
|
<button-input type="primary"
|
|
<button-input type="primary"
|
|
@@ -106,6 +107,11 @@ export default {
|
|
label: value ? value : false
|
|
label: value ? value : false
|
|
});
|
|
});
|
|
this.showLabelSelection = false;
|
|
this.showLabelSelection = false;
|
|
|
|
+ },
|
|
|
|
+ reset: function () {
|
|
|
|
+ this.socket.post(this.mediaUrl, {
|
|
|
|
+ reset: true
|
|
|
|
+ });
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|