Skip to content

Commit

Permalink
Update packages/web-app-admin-settings/src/components/Groups/SideBar/…
Browse files Browse the repository at this point in the history
…GroupInfoBox.vue

Co-authored-by: Jannik Stehle <50302941+JammingBen@users.noreply.github.com>
  • Loading branch information
Jan and JammingBen authored Mar 31, 2023
1 parent 8943880 commit b480055
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { useGettext } from 'vue3-gettext'
export default defineComponent({
name: 'GroupInfoBox',
setup(props) {
const _group = computed(() => props.group as Group)
const _group = computed<Group>(() => props.group)
const { $ngettext } = useGettext()
const groupMembersText = computed(() => {
return $ngettext(
Expand Down

0 comments on commit b480055

Please sign in to comment.