Always show debug info
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
abb43bfe59
commit
c492fcd448
2 changed files with 10 additions and 5 deletions
|
@ -96,7 +96,7 @@ limitations under the License.
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: flex-end;
|
||||||
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
@ -181,5 +181,8 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
.debugInfo {
|
.debugInfo {
|
||||||
margin-left: 16px;
|
position: absolute;
|
||||||
|
top: 16px;
|
||||||
|
left: 16px;
|
||||||
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
|
@ -130,11 +130,13 @@ export const VideoTile = forwardRef<HTMLDivElement, Props>(
|
||||||
ref={ref}
|
ref={ref}
|
||||||
{...rest}
|
{...rest}
|
||||||
>
|
>
|
||||||
|
{showCallFeedDebugInfo && (
|
||||||
|
<div className={classNames(styles.debugInfo)}>
|
||||||
|
{JSON.stringify(debugInfo)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
{toolbarButtons.length > 0 && !maximised && (
|
{toolbarButtons.length > 0 && !maximised && (
|
||||||
<div className={classNames(styles.toolbar)}>
|
<div className={classNames(styles.toolbar)}>
|
||||||
<div className={classNames(styles.debugInfo)}>
|
|
||||||
{showCallFeedDebugInfo && JSON.stringify(debugInfo)}
|
|
||||||
</div>
|
|
||||||
<div>{toolbarButtons}</div>
|
<div>{toolbarButtons}</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in a new issue