mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 06:56:04 +02:00
fix: edit-note-and-memo-dialog overflow (#1652)
This commit is contained in:
@@ -6,14 +6,14 @@
|
|||||||
if (!open) cancel();
|
if (!open) cancel();
|
||||||
}
|
}
|
||||||
">
|
">
|
||||||
<DialogContent class="x-dialog sm:max-w-125 translate-y-0" style="top: 30vh" :show-close-button="false">
|
<DialogContent class="x-dialog sm:max-w-125 translate-y-0" style="top: 10vh" :show-close-button="false">
|
||||||
<DialogHeader>
|
<DialogHeader>
|
||||||
<DialogTitle>{{ t('dialog.user.note_memo.header') }}</DialogTitle>
|
<DialogTitle>{{ t('dialog.user.note_memo.header') }}</DialogTitle>
|
||||||
</DialogHeader>
|
</DialogHeader>
|
||||||
|
|
||||||
|
<div>
|
||||||
<template v-if="!hideUserNotes || (hideUserNotes && hideUserMemos)">
|
<template v-if="!hideUserNotes || (hideUserNotes && hideUserMemos)">
|
||||||
<span class="name my-2">{{ t('dialog.user.info.note') }}</span>
|
<span class="name">{{ t('dialog.user.info.note') }}</span>
|
||||||
<br />
|
|
||||||
<InputGroupTextareaField
|
<InputGroupTextareaField
|
||||||
v-model="note"
|
v-model="note"
|
||||||
:autosize="{ minRows: 6, maxRows: 20 }"
|
:autosize="{ minRows: 6, maxRows: 20 }"
|
||||||
@@ -33,9 +33,12 @@
|
|||||||
:placeholder="t('dialog.user.info.memo_placeholder')"
|
:placeholder="t('dialog.user.info.memo_placeholder')"
|
||||||
input-class="resize-none min-h-0" />
|
input-class="resize-none min-h-0" />
|
||||||
</template>
|
</template>
|
||||||
|
</div>
|
||||||
|
|
||||||
<DialogFooter>
|
<DialogFooter>
|
||||||
<Button variant="secondary" @click="cancel" class="mr-2">{{ t('dialog.user.note_memo.cancel') }}</Button>
|
<Button variant="secondary" @click="cancel" class="mr-2">{{
|
||||||
|
t('dialog.user.note_memo.cancel')
|
||||||
|
}}</Button>
|
||||||
<Button @click="saveChanges">{{ t('dialog.user.note_memo.confirm') }}</Button>
|
<Button @click="saveChanges">{{ t('dialog.user.note_memo.confirm') }}</Button>
|
||||||
</DialogFooter>
|
</DialogFooter>
|
||||||
</DialogContent>
|
</DialogContent>
|
||||||
|
|||||||
Reference in New Issue
Block a user