mirror of
https://github.com/discourse/discourse.git
synced 2024-12-05 04:56:19 +08:00
003b44c75c
This was accidentally removed as part of the refactoring in fcb4e5a1a1
. This commit restores it, and updates it use theme-specific colours.
9 lines
221 B
JavaScript
9 lines
221 B
JavaScript
import Controller, { inject as controller } from "@ember/controller";
|
|
|
|
export default class extends Controller {
|
|
@controller wizardStep;
|
|
get showCanvas() {
|
|
return this.wizardStep.get("step.id") === "ready";
|
|
}
|
|
}
|