mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:24:03 +08:00
12 lines
275 B
JavaScript
12 lines
275 B
JavaScript
import Controller from "@ember/controller";
|
|
import computed from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Controller.extend({
|
|
currentStepId: null,
|
|
|
|
@computed("currentStepId")
|
|
showCanvas(currentStepId) {
|
|
return currentStepId === "finished";
|
|
}
|
|
});
|