refactor properties - added another "inbox" check

This commit is contained in:
negue
2019-01-14 23:17:26 +01:00
parent 61606cb69d
commit c66d2cb469
2 changed files with 19 additions and 3 deletions

View File

@@ -107,7 +107,16 @@ import copyAsTodoModal from './copyAsTodoModal';
import chatCard from './chatCard';
export default {
props: ['chat', 'groupType', 'groupId', 'groupName', 'inbox'],
props: {
chat: {},
inbox: {
type: Boolean,
default: false,
},
groupType: {},
groupId: {},
groupName: {},
},
components: {
copyAsTodoModal,
chatCard,