mirror of
https://github.com/apache/superset.git
synced 2026-04-21 00:54:44 +00:00
11 lines
227 B
JavaScript
11 lines
227 B
JavaScript
export const STATE_BSSTYLE_MAP = {
|
|
failed: 'danger',
|
|
pending: 'info',
|
|
fetching: 'info',
|
|
running: 'warning',
|
|
stopped: 'danger',
|
|
success: 'success',
|
|
};
|
|
|
|
export const STATUS_OPTIONS = ['success', 'failed', 'running'];
|