Skip to content

Commit 4a838cf

Browse files
feat: added no text when there is no user
1 parent 691c42f commit 4a838cf

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

client/packages/lowcoder/src/comps/comps/meetingComp/videoMeetingStreamComp.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,14 +286,12 @@ let VideoCompBuilder = (function (props) {
286286
<ReactResizeDetector onResize={onResize}>
287287
<Container ref={conRef} $style={props.style}>
288288
{props.shareScreen || userId ? (
289-
<div style={{ position: "relative" }}>
290289
<VideoContainer
291290
onClick={() => props.onEvent("videoClicked")}
292291
ref={videoRef}
293292
$style={props.style}
294293
id={props.shareScreen ? "share-screen" : userId}
295294
></VideoContainer>
296-
</div>
297295
) : (
298296
<TextContainer $style={props.style}>
299297
<p>No Video</p>

client/packages/lowcoder/src/comps/comps/remoteComp/remoteComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { useState } from "react";
99
import { useMount } from "react-use";
1010
import styled from "styled-components";
1111
import { RemoteCompInfo, RemoteCompLoader } from "types/remoteComp";
12-
import { loaders } from "./loaders";
12+
import { loaders } from "./loaders";
1313
import { withErrorBoundary } from "comps/generators/withErrorBoundary";
1414

1515
const ViewError = styled.div`

0 commit comments

Comments
 (0)