mirror of
https://github.com/discourse/discourse.git
synced 2025-03-04 14:01:53 +08:00

This was accidentally removed as part of the refactoring in fcb4e5a1a15631cef9c20489866a68600ecf768d. 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";
|
|
}
|
|
}
|