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

getters.js « pane « modules « stores « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7816172bb6fa97e37d25626562410ab560bb2387 (plain)
1
2
3
// eslint-disable-next-line import/prefer-default-export
export const isAliveView = state => view =>
  state.keepAliveViews[view] || (state.isOpen && state.currentView === view);