mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-21 20:59:05 +00:00
style: linting
This commit is contained in:
@@ -392,13 +392,13 @@ export default function MeetingSelection({
|
|||||||
No meetings right now
|
No meetings right now
|
||||||
</Text>
|
</Text>
|
||||||
<Text fontSize="md" color="gray.600" maxW="400px">
|
<Text fontSize="md" color="gray.600" maxW="400px">
|
||||||
There are no ongoing or upcoming meetings in this room at the moment.
|
There are no ongoing or upcoming meetings in this room at the
|
||||||
|
moment.
|
||||||
</Text>
|
</Text>
|
||||||
</VStack>
|
</VStack>
|
||||||
</VStack>
|
</VStack>
|
||||||
</Flex>
|
</Flex>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
</Flex>
|
</Flex>
|
||||||
</Flex>
|
</Flex>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -70,11 +70,7 @@ export default function MinimalHeader({
|
|||||||
{/* Action Buttons */}
|
{/* Action Buttons */}
|
||||||
<HStack gap={2}>
|
<HStack gap={2}>
|
||||||
{showCreateButton && onCreateMeeting && (
|
{showCreateButton && onCreateMeeting && (
|
||||||
<Button
|
<Button colorScheme="green" size="sm" onClick={onCreateMeeting}>
|
||||||
colorScheme="green"
|
|
||||||
size="sm"
|
|
||||||
onClick={onCreateMeeting}
|
|
||||||
>
|
|
||||||
Create Meeting
|
Create Meeting
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
|
|||||||
36
www/app/reflector-api.d.ts
vendored
36
www/app/reflector-api.d.ts
vendored
@@ -673,9 +673,11 @@ export interface components {
|
|||||||
*/
|
*/
|
||||||
end_time: string;
|
end_time: string;
|
||||||
/** Attendees */
|
/** Attendees */
|
||||||
attendees?: {
|
attendees?:
|
||||||
|
| {
|
||||||
[key: string]: unknown;
|
[key: string]: unknown;
|
||||||
}[] | null;
|
}[]
|
||||||
|
| null;
|
||||||
/** Location */
|
/** Location */
|
||||||
location?: string | null;
|
location?: string | null;
|
||||||
/**
|
/**
|
||||||
@@ -771,7 +773,13 @@ export interface components {
|
|||||||
* Status
|
* Status
|
||||||
* @enum {string}
|
* @enum {string}
|
||||||
*/
|
*/
|
||||||
status: "idle" | "uploaded" | "recording" | "processing" | "error" | "ended";
|
status:
|
||||||
|
| "idle"
|
||||||
|
| "uploaded"
|
||||||
|
| "recording"
|
||||||
|
| "processing"
|
||||||
|
| "error"
|
||||||
|
| "ended";
|
||||||
/** Locked */
|
/** Locked */
|
||||||
locked: boolean;
|
locked: boolean;
|
||||||
/** Duration */
|
/** Duration */
|
||||||
@@ -819,7 +827,13 @@ export interface components {
|
|||||||
* Status
|
* Status
|
||||||
* @enum {string}
|
* @enum {string}
|
||||||
*/
|
*/
|
||||||
status: "idle" | "uploaded" | "recording" | "processing" | "error" | "ended";
|
status:
|
||||||
|
| "idle"
|
||||||
|
| "uploaded"
|
||||||
|
| "recording"
|
||||||
|
| "processing"
|
||||||
|
| "error"
|
||||||
|
| "ended";
|
||||||
/** Locked */
|
/** Locked */
|
||||||
locked: boolean;
|
locked: boolean;
|
||||||
/** Duration */
|
/** Duration */
|
||||||
@@ -1034,7 +1048,11 @@ export interface components {
|
|||||||
* @default automatic-2nd-participant
|
* @default automatic-2nd-participant
|
||||||
* @enum {string}
|
* @enum {string}
|
||||||
*/
|
*/
|
||||||
recording_trigger: "none" | "prompt" | "automatic" | "automatic-2nd-participant";
|
recording_trigger:
|
||||||
|
| "none"
|
||||||
|
| "prompt"
|
||||||
|
| "automatic"
|
||||||
|
| "automatic-2nd-participant";
|
||||||
/**
|
/**
|
||||||
* Num Clients
|
* Num Clients
|
||||||
* @default 0
|
* @default 0
|
||||||
@@ -1246,7 +1264,13 @@ export interface components {
|
|||||||
* Status
|
* Status
|
||||||
* @enum {string}
|
* @enum {string}
|
||||||
*/
|
*/
|
||||||
status: "idle" | "uploaded" | "recording" | "processing" | "error" | "ended";
|
status:
|
||||||
|
| "idle"
|
||||||
|
| "uploaded"
|
||||||
|
| "recording"
|
||||||
|
| "processing"
|
||||||
|
| "error"
|
||||||
|
| "ended";
|
||||||
/** Rank */
|
/** Rank */
|
||||||
rank: number;
|
rank: number;
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user