Skip to content

Commit

Permalink
Merge pull request #5341 from vhwweng/issue_5265
Browse files Browse the repository at this point in the history
导入构建机弹窗添加无法刷出节点的FAQ指引
  • Loading branch information
lockiechen authored Oct 27, 2021
2 parents b1ca1c9 + d368a1b commit b2e6cb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<label class="bk-label env-item-label">{{ $t('environment.nodeInfo.model') }}:</label>
<div class="bk-form-content" style="margin-top:4px;">
<bk-radio-group v-model="constructImportForm.model">
<bk-radio :value="'MACOS'" :disabled="isAgent">macOS</bk-radio>
<bk-radio :value="'LINUX'" :disabled="isAgent">Linux</bk-radio>
<bk-radio :value="'MACOS'" :disabled="isAgent">macOS</bk-radio>
<bk-radio :value="'WINDOWS'" :disabled="isAgent">Windows</bk-radio>
</bk-radio-group>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/frontend/devops-environment/src/views/node_list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
},
// 构建机内容
constructImportForm: {
model: 'MACOS',
model: 'Linux',
location: '',
link: ''
},
Expand Down Expand Up @@ -470,7 +470,7 @@
this.constructImportForm.model = node.osName.toUpperCase()
this.requestGateway(gateway, node)
} else {
this.constructImportForm.model = 'MACOS'
this.constructImportForm.model = 'LINUX'
this.requestGateway()
}
} else {
Expand Down

0 comments on commit b2e6cb6

Please sign in to comment.