Skip to content

Commit

Permalink
#695 remove unnecessary params
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangsenfeng committed Mar 5, 2020
1 parent 82d8a35 commit bf5fa72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmdb-ui/src/pages/components/auto-fill.js
Original file line number Diff line number Diff line change
Expand Up @@ -881,10 +881,10 @@ export default {
<div class="auto-fill" onmouseover={this.mouseover} onmouseout={this.mouseout} onClick={this.handleClick}>
{this.isReadOnly ? (
// 只读状态
this.renderEditor(this.autoFillArray)
this.renderEditor()
) : (
// 可编辑状态
<Poptip v-model={this.optionsDisplay}>{this.renderEditor(this.autoFillArray)}</Poptip>
<Poptip v-model={this.optionsDisplay}>{this.renderEditor()}</Poptip>
)}
</div>
)
Expand Down

0 comments on commit bf5fa72

Please sign in to comment.