chore(core): 对一些模块执行代码格式化同时调整一些组件的样式

This commit is contained in:
王立帮
2025-04-27 16:01:18 +08:00
parent c834ce9914
commit 1aa663aadc
8 changed files with 12 additions and 10 deletions

View File

@@ -16,7 +16,7 @@ class FSBoard {
constructor() {}
#addParms_(usrFolder, fsType) {
#addParams_(usrFolder, fsType) {
this.#handler_.updateConfig({
port: Serial.getSelectedPortName()
});
@@ -25,12 +25,12 @@ class FSBoard {
}
async download(usrFolder, fsType) {
this.#addParms_(usrFolder, fsType);
this.#addParams_(usrFolder, fsType);
this.#handler_.onBeforeDownload();
}
async upload(usrFolder, fsType) {
this.#addParms_(usrFolder, fsType);
this.#addParams_(usrFolder, fsType);
this.#handler_.onBeforeUpload();
}