Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/app/overlays/toast-overlay/toast-component.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,14 @@
class="vw-60 h-auto object-contain"
/>
</div>
} @else if (toastInfo().selectedTeam === "none" && toastInfo().eventLogoEnabled) {
<div
class="ml-auto flex w-27.5 shrink-0 items-center justify-center rounded-s-[0.4375rem] bg-[#161616]"
>
<img [src]="tournamentIconUrl()" class="vw-60 h-auto object-contain" />
</div>
} @else {
<div></div>
<div></div>
}
<div
class="flex flex-col items-center justify-center gap-1 self-center overflow-hidden"
Expand All @@ -83,7 +89,7 @@
{{ toastInfo().message }}
</span>
</div>
@if (toastInfo().eventLogoEnabled) {
@if (toastInfo().eventLogoEnabled && toastInfo().selectedTeam != "none") {

Check failure on line 92 in src/app/overlays/toast-overlay/toast-component.html

View workflow job for this annotation

GitHub Actions / lint-format-build (22.x)

Expected `!==` but received `!=`
<div
class="ml-auto flex w-27.5 shrink-0 items-center justify-center rounded-e-[0.4375rem] bg-[#161616]"
>
Expand Down
Loading