Skip to content
Snippets Groups Projects

Remove Group creation view, use a modal for creation and edition

Merged ml bonhomme requested to merge group-modal into master
All threads resolved!
1 file
+ 4
2
Compare changes
  • Side-by-side
  • Inline
@@ -39,7 +39,7 @@
Publicly searchable
</label>
</div>
<p class="help">Make this group searchable to any authenticated user</p>
<p class="help">Make this group searchable by any authenticated user</p>
<template v-if="fieldErrors.public">
<p
class="help is-danger"
@@ -89,12 +89,14 @@ export default defineComponent({
'update:modelValue': (value: boolean) => typeof value === 'boolean',
created: () => true
},
// The group Object is not required when a user wants to create a new group.
props: {
modelValue: {
type: Boolean,
default: false
},
/**
* The group Object is not required when a user wants to create a new group.
*/
group: {
type: Object as PropType<Group | null>,
default: null
Loading