Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:shiguredo/sora-devtools into fea…
Browse files Browse the repository at this point in the history
…ture/stop-media-processor-on-device-disabled
  • Loading branch information
tnamao committed Oct 24, 2023
2 parents 335b301 + 0283034 commit 05c847e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/DevtoolsPane/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -482,13 +482,13 @@ export const DevtoolsPane: React.FC = () => {
<RowDevices />
<RowMediaDevices />
<hr className="hr-form" />
{role !== 'recvonly' ? (
<div className="row mb-2">
<RequestMediaButton />
<DisposeMediaButton />
</div>
) : null}
<div className="row">
{role !== 'recvonly' ? (
<>
<RequestMediaButton />
<DisposeMediaButton />
</>
) : null}
<ConnectButton />
<DisconnectButton />
<StartRecordingButton />
Expand Down

0 comments on commit 05c847e

Please sign in to comment.