config_tools: reformat Board.vue

reformat Board.vue

Tracked-On: #6691
Signed-off-by: Weiyi Feng <weiyix.feng@intel.com>
This commit is contained in:
Weiyi Feng 2022-06-05 23:06:19 +08:00 committed by acrnsi-robot
parent c3ed4fef8c
commit 612c73e631

View File

@ -63,7 +63,7 @@ import NewBoard from "./NewBoard.vue";
export default {
name: "Board",
components: { NewBoard },
components: {NewBoard},
props: {
WorkingFolder: {
type: String
@ -117,7 +117,7 @@ export default {
.then((filePath) => {
if (filePath.length > 0) {
if (this.currentSelectedBoard.length > 0) {
if (filePath != this.currentSelectedBoard) {
if (filePath !== this.currentSelectedBoard) {
this.showBoardOverwrite = true;
}
}
@ -132,7 +132,7 @@ export default {
let filepath = ''
if (useNewFile) {
filepath = this.newFilePath
if (filepath != this.currentSelectedBoard) {
if (filepath !== this.currentSelectedBoard) {
configurator.removeFile(this.currentSelectedBoard)
.catch((err) => alert(`${err}`))
}
@ -149,7 +149,7 @@ export default {
.then(() => configurator.addHistory('Board', boardFileNewPath))
.then(() => this.getBoardHistory())
})
.catch((err)=> {
.catch((err) => {
alert(`Loading ${filepath} failed: ${err}`)
console.log(err)
})
@ -161,7 +161,7 @@ export default {
.then((res) => {
let boardPath = ''
res.map((filepath) => {
if (filepath.path.search('\\.board\\.xml') != -1) {
if (filepath.path.search('\\.board\\.xml') !== -1) {
boardPath = filepath.path
}
})