debian-mirror-gitlab/app/assets/javascripts/work_items/constants.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
461 B
JavaScript
Raw Normal View History

2022-06-21 17:19:12 +05:30
import { s__ } from '~/locale';
2022-03-02 08:16:31 +05:30
2022-07-16 23:28:13 +05:30
export const STATE_OPEN = 'OPEN';
export const STATE_CLOSED = 'CLOSED';
export const STATE_EVENT_REOPEN = 'REOPEN';
export const STATE_EVENT_CLOSE = 'CLOSE';
2022-06-21 17:19:12 +05:30
export const i18n = {
fetchError: s__('WorkItem|Something went wrong when fetching the work item. Please try again.'),
updateError: s__('WorkItem|Something went wrong while updating the work item. Please try again.'),
};
2022-07-16 23:28:13 +05:30
export const DEFAULT_MODAL_TYPE = 'Task';