summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/GroupModuleClientView.vue
diff options
context:
space:
mode:
authorUdo Walter2019-02-25 20:27:18 +0100
committerUdo Walter2019-02-25 20:27:18 +0100
commit1fc20c6fc76843b8d6ef90be51edeeaab46ecb79 (patch)
tree1fb845f911b6f4575b611a4e64e760afd12d1e4e /webapp/src/components/GroupModuleClientView.vue
parent[webapp/registration] switch to the new selctbox for groups selection (diff)
downloadbas-1fc20c6fc76843b8d6ef90be51edeeaab46ecb79.tar.gz
bas-1fc20c6fc76843b8d6ef90be51edeeaab46ecb79.tar.xz
bas-1fc20c6fc76843b8d6ef90be51edeeaab46ecb79.zip
[webapp] eslint fixes
Diffstat (limited to 'webapp/src/components/GroupModuleClientView.vue')
-rw-r--r--webapp/src/components/GroupModuleClientView.vue10
1 files changed, 9 insertions, 1 deletions
diff --git a/webapp/src/components/GroupModuleClientView.vue b/webapp/src/components/GroupModuleClientView.vue
index d8e8f6e..eec3e58 100644
--- a/webapp/src/components/GroupModuleClientView.vue
+++ b/webapp/src/components/GroupModuleClientView.vue
@@ -144,7 +144,15 @@ import { mapState, mapMutations } from 'vuex'
export default {
name: 'GroupModuleClientView',
- props: ['tabIndex', 'client'],
+ props: {
+ client: {
+ type: Object,
+ default: () => {}
+ },
+ tabIndex: {
+ type: Number
+ }
+ },
components: {
SelectBox
},