Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ class CodeProjectItem extends React.PureComponent<{
const settingsVisibility = settingsShow ? 'visible' : 'hidden';

const indexShow =
status && status.state !== RepoState.CLONING && status.state !== RepoState.DELETING;
status &&
status.state !== RepoState.CLONING &&
status.state !== RepoState.DELETING &&
status.state !== RepoState.INDEXING;
const indexVisibility = indexShow ? 'visible' : 'hidden';

const deleteShow = status && status.state !== RepoState.DELETING;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ const toastMessage = (
We’ve made some changes to roles and permissions in Kibana. Read more about what these changes
mean for you below.{' '}
</p>
<EuiButton size="s" href="">Learn More</EuiButton>
<EuiButton size="s" href="">
Learn More
</EuiButton>
</div>
);

Expand Down