11 lines
237 B
Plaintext
Raw Normal View History

2018-06-15 17:03:24 +02:00
import computed from "ember-addons/ember-computed-decorators";
export default Ember.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";
}
});