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

utils.js « abuse_reports « admin « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 842219010893d4295013a8c6c187ffbde4dcf5f6 (plain)
1
2
3
4
5
6
import { FILTERED_SEARCH_TOKEN_CATEGORY } from './constants';

export const buildFilteredSearchCategoryToken = (categories) => {
  const options = categories.map((c) => ({ value: c, title: c }));
  return { ...FILTERED_SEARCH_TOKEN_CATEGORY, options };
};