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

getters.js « stores « explorer « registry « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5619b73d4951a88b3f5daf95e851326e85939d64 (plain)
1
2
3
4
5
6
// eslint-disable-next-line import/prefer-default-export
export const tags = state => {
  // to show the loader inside the table we need to pass an empty array to gl-table whenever the table is loading
  // this is to take in account isLoading = true and state.tags =[1,2,3] during pagination and delete
  return state.isLoading ? [] : state.tags;
};