Skip to content

Commit

Permalink
fix(KnowledgeBase): fix clear bug, change icon
Browse files Browse the repository at this point in the history
  • Loading branch information
ganzorig committed Jul 7, 2021
1 parent f332f10 commit 4f8c4e7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Expand Up @@ -154,6 +154,7 @@ class CategoryForm extends React.Component<Props, State> {
value={self.state.parentCategoryId}
options={self.generateOptions(categories, true)}
onChange={onChange}
clearable={false}
/>
</FormGroup>
);
Expand Down Expand Up @@ -205,7 +206,8 @@ class CategoryForm extends React.Component<Props, State> {
btnStyle="simple"
type="button"
onClick={closeModal}
icon="cancel-1"
icon="times-circle"
uppercase={false}
>
Cancel
</Button>
Expand Down
Expand Up @@ -353,7 +353,8 @@ class KnowledgeForm extends React.Component<Props, State> {
btnStyle="simple"
type="button"
onClick={closeModal}
icon="cancel-1"
icon="times-circle"
uppercase={false}
>
Cancel
</Button>
Expand All @@ -363,7 +364,8 @@ class KnowledgeForm extends React.Component<Props, State> {
btnStyle="danger"
type="button"
onClick={this.remove}
icon="cancel-1"
icon="trash"
uppercase={false}
>
Delete
</Button>
Expand Down

0 comments on commit 4f8c4e7

Please sign in to comment.