mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-23 22:18:17 +00:00
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:
parent
8ac076a540
commit
fb91ad9a1a
@ -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}`))
|
||||
}
|
||||
@ -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
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user