debian-mirror-gitlab/app/assets/javascripts/notes/mixins/noteable.js

16 lines
259 B
JavaScript
Raw Normal View History

2018-03-27 19:54:05 +05:30
import * as constants from '../constants';
export default {
props: {
note: {
type: Object,
required: true,
},
},
computed: {
noteableType() {
2018-05-09 12:01:36 +05:30
return constants.NOTEABLE_TYPE_MAPPING[this.note.noteable_type];
2018-03-27 19:54:05 +05:30
},
},
};