Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxocube committed Jan 6, 2025
1 parent 79b91d0 commit ef0faf3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MediaFeeder/MediaFeeder/Components/SessionInfo.razor
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
</ChildContent>
<ActionTemplate>
<CardAction>
<Icon Type="@IconType.Outline.Pause" OnClick="@() => Session?.PlayPause()"/>
<Icon Type="@IconType.Outline.Pause" OnClick="@(() => Session?.PlayPause())"/>
Pause
</CardAction>
<CardAction>
<Icon Type="@IconType.Outline.Eye" OnClick="@() => Session?.Watch()"/>
<Icon Type="@IconType.Outline.Eye" OnClick="@(() => Session?.Watch())"/>
Mark Watched
</CardAction>
<CardAction>
<Icon Type="@IconType.Outline.FastForward" OnClick="@() => Session?.Skip()"/>
<Icon Type="@IconType.Outline.FastForward" OnClick="@(() => Session?.Skip())"/>
Skip
</CardAction>
</ActionTemplate>
Expand Down

0 comments on commit ef0faf3

Please sign in to comment.