diff --git a/app/imports/client/ui/creature/actions/ActionDialog.vue b/app/imports/client/ui/creature/actions/ActionDialog.vue
index 7380f51f..7929101b 100644
--- a/app/imports/client/ui/creature/actions/ActionDialog.vue
+++ b/app/imports/client/ui/creature/actions/ActionDialog.vue
@@ -24,6 +24,10 @@
@continue="continueAction"
@set-input-ready="setInputReady"
/>
+
+
+
+ Done
+
+
+ Next
+
+
@@ -134,10 +156,8 @@ export default {
this.actionResult, this, { simulate: true, stepThrough}
).then(() => {
this.actionDone = true;
- // If we aren't stepping through close the dialog and apply the action
- if (!this.actionResult._stepThrough) {
- this.$store.dispatch('popDialogStack', this.actionResult);
- }
+ this.actionBusy = false;
+ this.activeInput = undefined;
});
},
stepAction() {
@@ -164,7 +184,6 @@ export default {
this.activeInput = undefined;
this.activeInputParams = {};
this.userInputReady = false;
- console.log({savedInput})
resolve(savedInput);
}
});