We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4357686 commit 7c290f6Copy full SHA for 7c290f6
x-pack/plugins/code/public/components/admin_page/project_item.tsx
@@ -101,7 +101,10 @@ class CodeProjectItem extends React.PureComponent<{
101
const settingsVisibility = settingsShow ? 'visible' : 'hidden';
102
103
const indexShow =
104
- status && status.state !== RepoState.CLONING && status.state !== RepoState.DELETING;
+ status &&
105
+ status.state !== RepoState.CLONING &&
106
+ status.state !== RepoState.DELETING &&
107
+ status.state !== RepoState.INDEXING;
108
const indexVisibility = indexShow ? 'visible' : 'hidden';
109
110
const deleteShow = status && status.state !== RepoState.DELETING;
0 commit comments