Move background detect settings into SlideScan
This commit is contained in:
parent
bfef998300
commit
4da05b1869
7 changed files with 59 additions and 171 deletions
|
|
@ -45,7 +45,11 @@ export default {
|
|||
*/
|
||||
actionResponse: function (response) {
|
||||
if (this.actionData.notify_on_success) {
|
||||
this.modalNotify(this.actionData.success_message);
|
||||
if (this.actionData.response_is_success_message) {
|
||||
this.modalNotify(response.output);
|
||||
} else {
|
||||
this.modalNotify(this.actionData.success_message);
|
||||
}
|
||||
this.$emit("response", response);
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
/>
|
||||
<server-specified-action-button
|
||||
v-else-if="element.element_type === 'action_button'"
|
||||
:property-data="element"
|
||||
:action-data="element"
|
||||
/>
|
||||
<simple-accordion v-else-if="element.element_type === 'accordion'" :title="element.title">
|
||||
<server-specified-interface :elements="element.children" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue