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 8ac076a540
commit fb91ad9a1a

View File

@ -117,7 +117,7 @@ export default {
.then((filePath) => { .then((filePath) => {
if (filePath.length > 0) { if (filePath.length > 0) {
if (this.currentSelectedBoard.length > 0) { if (this.currentSelectedBoard.length > 0) {
if (filePath != this.currentSelectedBoard) { if (filePath !== this.currentSelectedBoard) {
this.showBoardOverwrite = true; this.showBoardOverwrite = true;
} }
} }
@ -132,7 +132,7 @@ export default {
let filepath = '' let filepath = ''
if (useNewFile) { if (useNewFile) {
filepath = this.newFilePath filepath = this.newFilePath
if (filepath != this.currentSelectedBoard) { if (filepath !== this.currentSelectedBoard) {
configurator.removeFile(this.currentSelectedBoard) configurator.removeFile(this.currentSelectedBoard)
.catch((err) => alert(`${err}`)) .catch((err) => alert(`${err}`))
} }
@ -161,7 +161,7 @@ export default {
.then((res) => { .then((res) => {
let boardPath = '' let boardPath = ''
res.map((filepath) => { res.map((filepath) => {
if (filepath.path.search('\\.board\\.xml') != -1) { if (filepath.path.search('\\.board\\.xml') !== -1) {
boardPath = filepath.path boardPath = filepath.path
} }
}) })