mirror of
https://github.com/thepaperpilot/Super-Auto-Coots.git
synced 2024-11-22 00:21:33 +00:00
Hide start stream button while empty team
This commit is contained in:
parent
d70ed118c4
commit
8109577e8d
1 changed files with 2 additions and 2 deletions
|
@ -1224,7 +1224,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
||||||
<div style="flex-grow: 1" />
|
<div style="flex-grow: 1" />
|
||||||
{findingMatch.value ? (
|
{findingMatch.value ? (
|
||||||
<div class="waiting">Finding opposing team...</div>
|
<div class="waiting">Finding opposing team...</div>
|
||||||
) : (
|
) : team.value.some(m => m != null) ? (
|
||||||
<img
|
<img
|
||||||
class="startStream"
|
class="startStream"
|
||||||
draggable="false"
|
draggable="false"
|
||||||
|
@ -1234,7 +1234,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
||||||
}}
|
}}
|
||||||
src={startStream}
|
src={startStream}
|
||||||
/>
|
/>
|
||||||
)}
|
) : null}
|
||||||
</Row>
|
</Row>
|
||||||
<div style="flex-grow: 1" />
|
<div style="flex-grow: 1" />
|
||||||
<Row style="margin-top: 10vh">
|
<Row style="margin-top: 10vh">
|
||||||
|
|
Loading…
Reference in a new issue