export default { name: 'CellBadges', props: { assignment: { type: Object, default: null }, locked: { type: Boolean, default: false }, hasComment: { type: Boolean, default: false }, hasNote: { type: Boolean, default: false }, commentText: { type: String, default: '' }, noteText: { type: String, default: '' } }, template: `
This cell is currently being edited by another user.
User Comment
{{ commentText }}
Technical Note
{{ noteText }}
` };