Skip to content

Commit

Permalink
fix icons for audio, video and transcripts
Browse files Browse the repository at this point in the history
  • Loading branch information
ephes committed Nov 10, 2024
1 parent 63a685b commit c5a9439
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cast/wagtail_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def register_video_menu_item() -> VideoMenuItem:
_("Video"),
reverse("castvideo:index"),
name="video",
classnames="icon icon-media",
icon_name="desktop",
order=300,
)

Expand All @@ -53,7 +53,7 @@ def register_audio_menu_item() -> AudioMenuItem:
_("Audio"),
reverse("castaudio:index"),
name="audio",
classnames="icon icon-media",
icon_name="media",
order=300,
)

Expand All @@ -72,7 +72,7 @@ def register_transcript_menu_item() -> TranscriptMenuItem:
_("Transcript"),
reverse("cast-transcript:index"),
name="transcript",
classnames="icon icon-media",
icon_name="edit",
order=300,
)

Expand Down
1 change: 1 addition & 0 deletions docs/releases/0.2.41.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ not yet finished.

- #167 Fixed the styling of the audio player
- #168 Add transcript model
- Better icons for audio, video and transcript MenuItems

0 comments on commit c5a9439

Please sign in to comment.