pull && resolve conflicts

This commit is contained in:
ogerly 2022-09-23 10:41:49 +02:00
commit 3e1eb299b7
6 changed files with 12 additions and 13 deletions

View File

@ -11,34 +11,34 @@
> >
<ds-input <ds-input
v-model="formData.name" v-model="formData.name"
:label="$t('group.group-name')" :label="$t('group.groupName')"
:placeholder="`${$t('group.group-name')}…`" :placeholder="`${$t('group.groupName')}…`"
></ds-input> ></ds-input>
<ds-input <ds-input
v-if="update" v-if="update"
v-model="formData.slug" v-model="formData.slug"
:label="$t('users.table.columns.slug')" :label="$t('users.table.columns.slug')"
:placeholder="`${$t('group.group-name')}…`" :placeholder="`${$t('group.groupName')}…`"
></ds-input> ></ds-input>
<ds-select <ds-select
icon="user" icon="user"
v-model="formData.groupType" v-model="formData.groupType"
:label="$t('group.visibility')" :label="$t('group.type')"
:options="['public', 'closed', 'hidden']" :options="['public', 'closed', 'hidden']"
placeholder="Status ..." placeholder="Status ..."
></ds-select> ></ds-select>
<ds-input <ds-input
v-model="formData.about" v-model="formData.about"
:label="$t('group.short-description')" :label="$t('group.goal')"
rows="3" rows="3"
></ds-input> ></ds-input>
<ds-input <ds-input
v-model="formData.description" v-model="formData.description"
:label="$t('group.long-description')" :label="$t('group.description')"
type="textarea" type="textarea"
rows="3" rows="3"
></ds-input> ></ds-input>
@ -58,9 +58,9 @@
<ds-select <ds-select
icon="card" icon="card"
v-model="formData.actionRadius" v-model="formData.actionRadius"
:label="$t('group.radius')" :label="$t('group.actionRadius')"
:options="['regional', 'national', 'continental', 'global']" :options="['regional', 'national', 'continental', 'global']"
:placeholder="`${$t('group.radius')} …`" :placeholder="`${$t('group.actionRadius')} …`"
></ds-select> ></ds-select>
</ds-space> </ds-space>
<ds-space margin-top="large"> <ds-space margin-top="large">

View File

@ -84,7 +84,6 @@ export default {
this.$toast.error(error.message) this.$toast.error(error.message)
} }
}, },
onlyOwnerGroups(bool) { onlyOwnerGroups(bool) {
this.$refs.myGruops.hidden = bool this.$refs.myGruops.hidden = bool
this.$refs.allGruops.hidden = !bool this.$refs.allGruops.hidden = !bool

View File

@ -384,7 +384,7 @@
}, },
"actionRadius": "Aktionsradius", "actionRadius": "Aktionsradius",
"back": "zurück", "back": "zurück",
"changeMemberRole": "Die Rolle wurde auf ({role}) geändert!", "change-member-role": "Die Rolle wurde auf „{role}“ geändert!",
"follow": "Folge", "follow": "Folge",
"foundation": "Gründung", "foundation": "Gründung",
"general": "Allgemein", "general": "Allgemein",

View File

@ -384,7 +384,7 @@
}, },
"actionRadius": "Action radius", "actionRadius": "Action radius",
"back": "back", "back": "back",
"changeMemberRole": "The role has been changed to ({role})!", "change-member-role": "The role has been changed to “{role}”!",
"follow": "Follow", "follow": "Follow",
"foundation": "Foundation", "foundation": "Foundation",
"general": "General", "general": "General",

View File

@ -16,7 +16,7 @@ export default {
group: { group: {
type: Object, type: Object,
required: false, required: false,
default: () => ({}), default: {},
}, },
}, },
data() { data() {

View File

@ -23,7 +23,7 @@
</div> </div>
</template> </template>
<script> <script>
import GroupList from '~/components/Group/GroupList.vue' import GroupList from '~/components/Group/GroupList'
import { groupQuery } from '~/graphql/groups.js' import { groupQuery } from '~/graphql/groups.js'
export default { export default {