Skip to content

Commit

Permalink
fix: #1048;
Browse files Browse the repository at this point in the history
  • Loading branch information
migbash committed Mar 6, 2023
1 parent 50ea2c1 commit eafe884
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions src/lib/components/page/fixture/standings/Standings-Team-Row.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -234,17 +234,19 @@
class="row-space-end"
style="width: auto;"
>
{#each recent_form as form}
<div
class="
recent-form-dot
m-r-5
"
class:win={form == 'W'}
class:draw={form == 'D'}
class:lost={form == 'L'}
/>
{/each}
{#if recent_form}
{#each recent_form.reverse() as form}
<div
class="
recent-form-dot
m-r-5
"
class:win={form == 'W'}
class:draw={form == 'D'}
class:lost={form == 'L'}
/>
{/each}
{/if}
</div>
</td>
{/if}
Expand Down

0 comments on commit eafe884

Please sign in to comment.