Skip to content

Commit

Permalink
fix: #1007;
Browse files Browse the repository at this point in the history
  • Loading branch information
migbash committed Feb 16, 2023
1 parent 05a80e4 commit c4949bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@
team-text
no-wrap
"
class:color-grey={item?.scores?.localteam_score < item?.scores?.visitorteam_score}>
class:color-grey={item?.winner_team_id != undefined && item?.winner_team_id != item?.localteam_id}>
{#if mobileExclusive}
{FIXTURE_H2H?.teams_data?.find(
({ team_id }) =>
Expand Down Expand Up @@ -1075,7 +1075,7 @@
team-text
no-wrap
"
class:color-grey={item?.scores?.visitorteam_score < item?.scores?.localteam_score}>
class:color-grey={item?.winner_team_id != undefined && item?.winner_team_id != item?.visitorteam_id}>
{#if mobileExclusive}
{FIXTURE_H2H?.teams_data?.find(
({ team_id }) =>
Expand Down

0 comments on commit c4949bd

Please sign in to comment.