Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
Apply prettier
Dieser Commit ist enthalten in:
Ursprung
1f254732da
Commit
81680033a7
1 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
|
@ -68,7 +68,7 @@ export default Controller.extend({
|
|||
file: null,
|
||||
filename: null,
|
||||
});
|
||||
document.getElementById('custom-wizard-file-upload').value = '';
|
||||
document.getElementById("custom-wizard-file-upload").value = "";
|
||||
},
|
||||
|
||||
@observes("importing", "destroying")
|
||||
|
@ -83,7 +83,7 @@ export default Controller.extend({
|
|||
|
||||
actions: {
|
||||
upload() {
|
||||
document.getElementById('custom-wizard-file-upload').click();
|
||||
document.getElementById("custom-wizard-file-upload").click();
|
||||
},
|
||||
|
||||
clearFile() {
|
||||
|
@ -102,7 +102,7 @@ export default Controller.extend({
|
|||
if (maxFileSize < file.size) {
|
||||
this.setMessage("error", "file_size_error");
|
||||
this.set("file", null);
|
||||
document.getElementById('custom-wizard-file-upload').value = '';
|
||||
document.getElementById("custom-wizard-file-upload").value = "";
|
||||
} else {
|
||||
this.setProperties({
|
||||
file,
|
||||
|
|
Laden …
In neuem Issue referenzieren