Skip to content

Commit 8168003

Browse files
committed
Apply prettier
1 parent 1f25473 commit 8168003

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

assets/javascripts/discourse/controllers/admin-wizards-manager.js.es6

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default Controller.extend({
6868
file: null,
6969
filename: null,
7070
});
71-
document.getElementById('custom-wizard-file-upload').value = '';
71+
document.getElementById("custom-wizard-file-upload").value = "";
7272
},
7373

7474
@observes("importing", "destroying")
@@ -83,7 +83,7 @@ export default Controller.extend({
8383

8484
actions: {
8585
upload() {
86-
document.getElementById('custom-wizard-file-upload').click();
86+
document.getElementById("custom-wizard-file-upload").click();
8787
},
8888

8989
clearFile() {
@@ -102,7 +102,7 @@ export default Controller.extend({
102102
if (maxFileSize < file.size) {
103103
this.setMessage("error", "file_size_error");
104104
this.set("file", null);
105-
document.getElementById('custom-wizard-file-upload').value = '';
105+
document.getElementById("custom-wizard-file-upload").value = "";
106106
} else {
107107
this.setProperties({
108108
file,

0 commit comments

Comments
 (0)