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

update.js « mixins « show « issues « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72be65b426f3a2acebfec555476322b240d76e2f (plain)
1
2
3
4
5
6
7
8
9
10
import eventHub from '../event_hub';

export default {
  methods: {
    updateIssuable() {
      this.formState.updateLoading = true;
      eventHub.$emit('update.issuable');
    },
  },
};