Skip to content

Commit d5435c1

Browse files
authored
chore: prepend slash to pagination next (#251)
1 parent b0b1253 commit d5435c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ae_mdw_web/util.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ defmodule AeMdwWeb.Util do
5353
def make_link(path_info, scope, query_groups) do
5454
path_info = path_no_scope(path_info)
5555
scope_info = (scope == nil && []) || [url_encode_scope(scope)]
56-
path = Enum.join(path_info ++ scope_info, "/")
56+
path = "/" <> Enum.join(path_info ++ scope_info, "/")
5757

5858
query =
5959
query_groups

0 commit comments

Comments
 (0)