File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -801,11 +801,11 @@ func (m MostPlayedModel) viewSavePrompt() string {
801801 content .WriteString ("[L] Choose from list\n " )
802802 content .WriteString ("[N] Cancel" )
803803
804- return RenderPage (PageLayout {
804+ return RenderPageWithBottomHelp (PageLayout {
805805 Title : "💾 Save Station" ,
806806 Content : content .String (),
807807 Help : "Y: My-favorites • L: Choose list • N: Cancel" ,
808- })
808+ }, m . height )
809809}
810810
811811func (m MostPlayedModel ) viewSelectList () string {
@@ -814,9 +814,9 @@ func (m MostPlayedModel) viewSelectList() string {
814814 content .WriteString ("Select a list:\n \n " )
815815 content .WriteString (m .listModel .View ())
816816
817- return RenderPage (PageLayout {
817+ return RenderPageWithBottomHelp (PageLayout {
818818 Title : "📁 Select List" ,
819819 Content : content .String (),
820820 Help : "↑↓: Navigate • Enter: Select • Esc: Cancel" ,
821- })
821+ }, m . height )
822822}
You can’t perform that action at this time.
0 commit comments