File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
client/packages/lowcoder/src/comps/comps Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -286,14 +286,12 @@ let VideoCompBuilder = (function (props) {
286
286
< ReactResizeDetector onResize = { onResize } >
287
287
< Container ref = { conRef } $style = { props . style } >
288
288
{ props . shareScreen || userId ? (
289
- < div style = { { position : "relative" } } >
290
289
< VideoContainer
291
290
onClick = { ( ) => props . onEvent ( "videoClicked" ) }
292
291
ref = { videoRef }
293
292
$style = { props . style }
294
293
id = { props . shareScreen ? "share-screen" : userId }
295
294
> </ VideoContainer >
296
- </ div >
297
295
) : (
298
296
< TextContainer $style = { props . style } >
299
297
< p > No Video</ p >
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { useState } from "react";
9
9
import { useMount } from "react-use" ;
10
10
import styled from "styled-components" ;
11
11
import { RemoteCompInfo , RemoteCompLoader } from "types/remoteComp" ;
12
- import { loaders } from "./loaders" ;
12
+ import { loaders } from "./loaders" ;
13
13
import { withErrorBoundary } from "comps/generators/withErrorBoundary" ;
14
14
15
15
const ViewError = styled . div `
You can’t perform that action at this time.
0 commit comments