Skip to content

Commit

Permalink
[frontend] Fix changing view in Knowledge (#4965)
Browse files Browse the repository at this point in the history
  • Loading branch information
lndrtrbn committed Nov 23, 2023
1 parent f0d7ba1 commit a1130db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ class ListLines extends Component {
handleToggleExports();
} else if (value && value === 'settings') {
this.handleOpenSettings();
} else if (value !== 'export-csv') {
} else if (value && value !== 'export-csv') {
handleChangeView(value);
}
}}
Expand Down

0 comments on commit a1130db

Please sign in to comment.