mirror of
https://github.com/thepaperpilot/Super-Auto-Coots.git
synced 2024-11-21 16:13:56 +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" />
|
||||
{findingMatch.value ? (
|
||||
<div class="waiting">Finding opposing team...</div>
|
||||
) : (
|
||||
) : team.value.some(m => m != null) ? (
|
||||
<img
|
||||
class="startStream"
|
||||
draggable="false"
|
||||
|
@ -1234,7 +1234,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
}}
|
||||
src={startStream}
|
||||
/>
|
||||
)}
|
||||
) : null}
|
||||
</Row>
|
||||
<div style="flex-grow: 1" />
|
||||
<Row style="margin-top: 10vh">
|
||||
|
|
Loading…
Reference in a new issue