Skip to content

Commit

Permalink
fix(secret): tls key crt 问题解决
Browse files Browse the repository at this point in the history
  • Loading branch information
ssongliu committed May 30, 2022
1 parent c1301c0 commit be03443
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<el-row :gutter="20">
<el-col :span="12">
<el-form-item :label="$t('business.configuration.privateKey')" prop="crt">
<ko-form-item itemType="textarea" v-model="form.crt" @change.native="transform"></ko-form-item>
<ko-form-item itemType="textarea" v-model="form.key" @change.native="transform"></ko-form-item>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item :label="$t('business.configuration.certificate')" prop="key">
<ko-form-item itemType="textarea" v-model="form.key" @change.native="transform"></ko-form-item>
<ko-form-item itemType="textarea" v-model="form.crt" @change.native="transform"></ko-form-item>
</el-form-item>
</el-col>
</el-row>
Expand Down

0 comments on commit be03443

Please sign in to comment.