12 lines
275 B
Plaintext
Raw Normal View History

import Controller from "@ember/controller";
2018-06-15 17:03:24 +02:00
import computed from "ember-addons/ember-computed-decorators";
export default Controller.extend({
currentStepId: null,
2018-06-15 17:03:24 +02:00
@computed("currentStepId")
showCanvas(currentStepId) {
2018-06-15 17:03:24 +02:00
return currentStepId === "finished";
}
});