We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0b1253 commit d5435c1Copy full SHA for d5435c1
lib/ae_mdw_web/util.ex
@@ -53,7 +53,7 @@ defmodule AeMdwWeb.Util do
53
def make_link(path_info, scope, query_groups) do
54
path_info = path_no_scope(path_info)
55
scope_info = (scope == nil && []) || [url_encode_scope(scope)]
56
- path = Enum.join(path_info ++ scope_info, "/")
+ path = "/" <> Enum.join(path_info ++ scope_info, "/")
57
58
query =
59
query_groups
0 commit comments