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

environment_item_mixin.js « mixins « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2dfed36ec99df2bdf1d732aa424a50c70a2291cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export default {
  computed: {
    deployIconName() {
      return '';
    },
    shouldRenderDeployBoard() {
      return false;
    },
  },
  methods: {
    toggleDeployBoard() {},
  },
};