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