cf50a7deb3
* Apply prettier * applied prettier for similar-topics-validator Co-authored-by: Faizaan Gagan <fzngagan@gmail.com>
16 Zeilen
372 B
JavaScript
16 Zeilen
372 B
JavaScript
import Component from "@ember/component";
|
|
import { default as discourseComputed } from "discourse-common/utils/decorators";
|
|
|
|
export default Component.extend({
|
|
classNames: "wizard-custom-step",
|
|
|
|
actions: {
|
|
bannerUploadDone(upload) {
|
|
this.set("step.banner", upload.url);
|
|
},
|
|
|
|
bannerUploadDeleted() {
|
|
this.set("step.banner", null);
|
|
},
|
|
},
|
|
});
|