mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 12:19:06 +00:00
refactor: improve transcript list performance (#480)
* refactor: improve transcript list performance * fix: sync openapi * fix: frontend types * fix: remove drop table _alembic_tmp_meeting * fix: remove create table too * fix: remove uq_recording_object_key
This commit is contained in:
@@ -193,7 +193,7 @@ export default function RoomsList() {
|
||||
(err.body as any).detail == "Room name is not unique"
|
||||
) {
|
||||
setNameError(
|
||||
"This room name is already taken. Please choose a different name."
|
||||
"This room name is already taken. Please choose a different name.",
|
||||
);
|
||||
} else {
|
||||
setNameError("An error occurred. Please try again.");
|
||||
@@ -316,7 +316,7 @@ export default function RoomsList() {
|
||||
options={roomModeOptions}
|
||||
value={{
|
||||
label: roomModeOptions.find(
|
||||
(rm) => rm.value === room.roomMode
|
||||
(rm) => rm.value === room.roomMode,
|
||||
)?.label,
|
||||
value: room.roomMode,
|
||||
}}
|
||||
@@ -335,7 +335,7 @@ export default function RoomsList() {
|
||||
options={recordingTypeOptions}
|
||||
value={{
|
||||
label: recordingTypeOptions.find(
|
||||
(rt) => rt.value === room.recordingType
|
||||
(rt) => rt.value === room.recordingType,
|
||||
)?.label,
|
||||
value: room.recordingType,
|
||||
}}
|
||||
@@ -358,7 +358,7 @@ export default function RoomsList() {
|
||||
options={recordingTriggerOptions}
|
||||
value={{
|
||||
label: recordingTriggerOptions.find(
|
||||
(rt) => rt.value === room.recordingTrigger
|
||||
(rt) => rt.value === room.recordingTrigger,
|
||||
)?.label,
|
||||
value: room.recordingTrigger,
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user