Skip to content

Commit

Permalink
[Enterprise Search] Enable minute scheduling for full-sync (elastic#1…
Browse files Browse the repository at this point in the history
…69510)

## Summary

Enable minute scheduling for full content sync

https://github.com/elastic/kibana/assets/1410658/0c4b2c00-dac7-4d64-8406-cf34b7775f8b

### Checklist

- [ ] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
- [x] Any UI touched in this PR is usable by keyboard only (learn more
about [keyboard accessibility](https://webaim.org/techniques/keyboard/))
- [x] Any UI touched in this PR does not create any new axe failures
(run axe in browser:
[FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/),
[Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US))
- [x] This renders correctly on smaller devices using a responsive
layout. (You can test this [in your
browser](https://www.browserstack.com/guide/responsive-testing-on-local-server))

(cherry picked from commit 136cdfa)
  • Loading branch information
efegurkan committed Oct 24, 2023
1 parent 34f92a2 commit ae25392
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,9 @@ export const ConnectorContentScheduling: React.FC<ConnectorContentSchedulingProp
<EuiFlexItem>
<ConnectorCronEditor
disabled={isGated}
frequencyBlockList={type === SyncJobType.ACCESS_CONTROL ? [] : undefined}
frequencyBlockList={
type === SyncJobType.ACCESS_CONTROL || type === SyncJobType.FULL ? [] : undefined
}
scheduling={scheduling[type]}
type={type}
onReset={() => {
Expand Down

0 comments on commit ae25392

Please sign in to comment.