File tree Expand file tree Collapse file tree 7 files changed +7
-10
lines changed Expand file tree Collapse file tree 7 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ defmodule MediaServerWeb.MoviesLive.Index do
5353 {
5454 :noreply ,
5555 socket
56- |> push_redirect ( to: ~p" /movies?query=#{ query } " )
56+ |> push_navigate ( to: ~p" /movies?query=#{ query } " )
5757 }
5858 end
5959end
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ defmodule MediaServerWeb.PeopleLive.Index do
5353 {
5454 :noreply ,
5555 socket
56- |> push_redirect ( to: ~p" /people?query=#{ query } " )
56+ |> push_navigate ( to: ~p" /people?query=#{ query } " )
5757 }
5858 end
5959end
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ defmodule MediaServerWeb.SearchLive.Index do
4444 {
4545 :noreply ,
4646 socket
47- |> push_redirect ( to: ~p" /search?query=#{ query } " )
47+ |> push_navigate ( to: ~p" /search?query=#{ query } " )
4848 }
4949 end
5050
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ defmodule MediaServerWeb.SeriesLive.Index do
5353 {
5454 :noreply ,
5555 socket
56- |> push_redirect ( to: ~p" /series?query=#{ query } " )
56+ |> push_navigate ( to: ~p" /series?query=#{ query } " )
5757 }
5858 end
5959end
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ defmodule MediaServerWeb.SettingsLive.Index do
3434 :noreply ,
3535 socket
3636 |> put_flash ( :info , "Success" )
37- |> push_redirect ( to: Routes . settings_index_path ( socket , :index ) )
37+ |> push_navigate ( to: Routes . settings_index_path ( socket , :index ) )
3838 }
3939
4040 { :error , % Ecto.Changeset { } = changeset } ->
@@ -55,7 +55,7 @@ defmodule MediaServerWeb.SettingsLive.Index do
5555 :noreply ,
5656 socket
5757 |> put_flash ( :info , "Success" )
58- |> push_redirect ( to: Routes . settings_index_path ( socket , :index ) )
58+ |> push_navigate ( to: Routes . settings_index_path ( socket , :index ) )
5959 }
6060
6161 { :error , % Ecto.Changeset { } = changeset } ->
Original file line number Diff line number Diff line change @@ -44,8 +44,6 @@ defmodule MediaServerWeb.Router do
4444 live "/people" , PeopleLive.Index , :index
4545 live "/people/:id" , PeopleLive.Show , :show
4646
47- live "/history" , HistoryLive.Index , :index
48-
4947 live "/search" , SearchLive.Index , :index
5048
5149 live "/settings" , SettingsLive.Index , :index
Original file line number Diff line number Diff line change 55 < meta http-equiv = "X-UA-Compatible " content = "IE=edge " />
66 < meta name = "viewport " content = "width=device-width, initial-scale=1.0 " />
77 <%= csrf_meta_tag ( ) %>
8- <%= live_title_tag ( assigns [ :page_title ] ) %>
9-
8+ < . live_title > <%= assigns [ :page_title ] %> </ . live_title >
109 < link rel = "apple-touch-icon " sizes = "57x57 " href = "/apple-icon-57x57.png " />
1110 < link rel = "apple-touch-icon " sizes = "60x60 " href = "/apple-icon-60x60.png " />
1211 < link rel = "apple-touch-icon " sizes = "72x72 " href = "/apple-icon-72x72.png " />
You can’t perform that action at this time.
0 commit comments