|
|
|
@ -20,23 +20,22 @@ |
|
|
|
'single-player': match.teams[i-1].names.length === 1, |
|
|
|
'single-player': match.teams[i-1].names.length === 1, |
|
|
|
'two-players': match.teams[i-1].names.length === 2 |
|
|
|
'two-players': match.teams[i-1].names.length === 2 |
|
|
|
}"> |
|
|
|
}"> |
|
|
|
<!-- Show lucky loser or walkout status --> |
|
|
|
<div class="player-flex-row"> |
|
|
|
<template x-if="match.should_show_lucky_loser_status && match.teams[i-1].is_lucky_loser"> |
|
|
|
<div> |
|
|
|
<div class="overlay-text right-label minor-info semibold">(LL)</div> |
|
|
|
<template x-for="name in match.teams[i-1].names"> |
|
|
|
</template> |
|
|
|
<div :class="{ |
|
|
|
<template x-if="match.teams[i-1].walk_out === 1"> |
|
|
|
'bold': true, |
|
|
|
<div class="overlay-text right-label minor-info semibold">(WO)</div> |
|
|
|
'strikethrough': match.teams[i-1].walk_out === 1, |
|
|
|
</template> |
|
|
|
'winner': match.teams[i-1].is_winner |
|
|
|
|
|
|
|
}"> |
|
|
|
<template x-for="name in match.teams[i-1].names"> |
|
|
|
<span x-text="name === '' ? ' ' : name"></span> |
|
|
|
<div :class="{ |
|
|
|
</div> |
|
|
|
'bold': true, |
|
|
|
</template> |
|
|
|
'strikethrough': match.teams[i-1].walk_out === 1, |
|
|
|
</div> |
|
|
|
'winner': match.teams[i-1].is_winner |
|
|
|
<template x-if="match.should_show_lucky_loser_status && match.teams[i-1].is_lucky_loser"> |
|
|
|
}"> |
|
|
|
<div class="minor-info semibold">(LL)</div> |
|
|
|
<span x-text="name === '' ? ' ' : name"></span> |
|
|
|
</template> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="scores"> |
|
|
|
<div class="scores"> |
|
|
|
<template x-for="score in match.teams[i-1].scores"> |
|
|
|
<template x-for="score in match.teams[i-1].scores"> |
|
|
|
|