Skip to content

Commit

Permalink
[frontend] fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
SouadHadjiat committed Nov 22, 2023
1 parent 610a14a commit 2ee1d28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ const Settings = () => {
<Paper classes={{ root: classes.paper }} variant="outlined">
<List style={{ marginTop: -20 }}>
{modules.map((module) => {
const isEeModule = ['ACTIVITY_MANAGER', 'PLAYBOOK_MANAGER'].includes(module.id);
const isEeModule = ['ACTIVITY_MANAGER', 'PLAYBOOK_MANAGER', 'FILE_INDEX_MANAGER'].includes(module.id);
let status = module.enable;
if (!isEnterpriseEdition && isEeModule) {
status = 'ee';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ const FileIndexingConfiguration: FunctionComponent<FileIndexingConfigurationProp
component={SwitchField}
type="checkbox"
name="include_global_files"
label={t('Include files not related to any knowledge (data import and analyst workbench)')}
label={t('Include files not related to any knowledge (data import)')}
containerstyle={{ marginBottom: 20 }}
onChange={submitForm}
/>
Expand Down

0 comments on commit 2ee1d28

Please sign in to comment.