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

draft.js « mixins « notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1370f3978dfe695e7933d6f03691a89d42fdb42f (plain)
1
2
3
4
5
6
7
8
export default {
  computed: {
    isDraft: () => false,
    canResolve() {
      return this.note.current_user.can_resolve;
    },
  },
};