Merge pull request #11970 from jtmelhorn/devel

Joboutput Search: Put Event Dropdown Options in Alpha Order #11807
This commit is contained in:
Alex Corey
2022-03-29 13:10:25 -04:00
committed by GitHub

View File

@@ -100,37 +100,37 @@ function JobOutputSearch({
name: t`Event`, name: t`Event`,
key: 'or__event', key: 'or__event',
options: [ options: [
['runner_on_failed', t`Host Failed`], ['debug', t`Debug`],
['runner_on_start', t`Host Started`], ['deprecated', t`Deprecated`],
['runner_on_ok', t`Host OK`], ['error', t`Error`],
['runner_on_error', t`Host Failure`],
['runner_on_skipped', t`Host Skipped`],
['runner_on_unreachable', t`Host Unreachable`],
['runner_on_no_hosts', t`No Hosts Remaining`],
['runner_on_async_poll', t`Host Polling`],
['runner_on_async_ok', t`Host Async OK`],
['runner_on_async_failed', t`Host Async Failure`],
['runner_item_on_ok', t`Item OK`],
['runner_item_on_failed', t`Item Failed`],
['runner_item_on_skipped', t`Item Skipped`],
['runner_retry', t`Host Retry`],
['runner_on_file_diff', t`File Difference`], ['runner_on_file_diff', t`File Difference`],
['playbook_on_start', t`Playbook Started`], ['playbook_on_setup', t`Gathering Facts`],
['playbook_on_notify', t`Running Handlers`], ['runner_on_async_failed', t`Host Async Failure`],
['runner_on_async_ok', t`Host Async OK`],
['runner_on_failed', t`Host Failed`],
['runner_on_error', t`Host Failure`],
['runner_on_ok', t`Host OK`],
['runner_on_async_poll', t`Host Polling`],
['runner_retry', t`Host Retry`],
['runner_on_skipped', t`Host Skipped`],
['runner_on_start', t`Host Started`],
['runner_on_unreachable', t`Host Unreachable`],
['playbook_on_include', t`Including File`], ['playbook_on_include', t`Including File`],
['runner_item_on_failed', t`Item Failed`],
['runner_item_on_ok', t`Item OK`],
['runner_item_on_skipped', t`Item Skipped`],
['playbook_on_no_hosts_matched', t`No Hosts Matched`], ['playbook_on_no_hosts_matched', t`No Hosts Matched`],
['playbook_on_no_hosts_remaining', t`No Hosts Remaining`], ['playbook_on_no_hosts_remaining', t`No Hosts Remaining`],
['playbook_on_task_start', t`Task Started`], ['runner_on_no_hosts', t`No Hosts Remaining`],
['playbook_on_vars_prompt', t`Variables Prompted`],
['playbook_on_setup', t`Gathering Facts`],
['playbook_on_play_start', t`Play Started`], ['playbook_on_play_start', t`Play Started`],
['playbook_on_stats', t`Playbook Complete`], ['playbook_on_stats', t`Playbook Complete`],
['debug', t`Debug`], ['playbook_on_start', t`Playbook Started`],
['verbose', t`Verbose`], ['playbook_on_notify', t`Running Handlers`],
['deprecated', t`Deprecated`],
['warning', t`Warning`],
['system_warning', t`System Warning`], ['system_warning', t`System Warning`],
['error', t`Error`], ['playbook_on_task_start', t`Task Started`],
['playbook_on_vars_prompt', t`Variables Prompted`],
['verbose', t`Verbose`],
['warning', t`Warning`],
], ],
}); });
} }