feat: sharing rooms with moderators and users

Dialog and permissions management
pull/281/head
Sebastien Marinier 2024-05-29 17:09:06 +02:00 committed by Sebastien Marinier
parent 7f1760c372
commit b099136690
1 changed files with 4 additions and 0 deletions

View File

@ -194,11 +194,15 @@ const RoomRow: React.FC<Props> = (props) => {
return <span></span>;
}
<<<<<<< HEAD
<<<<<<< HEAD
function edit(field: string, type: 'text' | 'number' = 'text', canEdit = true, options?) {
=======
function edit(field: string, type: 'text' | 'number' = 'text', canEdit: boolean = true, options?) {
>>>>>>> 63daf83 (feat: manage view of rooms for moderators and users)
=======
function edit(field: string, type: 'text' | 'number' = 'text', canEdit = true, options?) {
>>>>>>> 82951e9 (feat: sharing rooms with moderators and users)
return canEdit ?
<EditableValue field={field} value={room[field]} setValue={updateRoom} type={type} options={options} />
: