Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « incidents « components « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59bf1ea466c4fd75ee8d090d977833ebe3190a67 (plain)
1
2
3
4
5
import { s__ } from '~/locale';

import { STATUS_LABELS } from './constants';

export const getStatusLabel = (status) => STATUS_LABELS[status] ?? s__('IncidentManagement|None');