diff options
author | Guillermo Ramos | 2020-02-14 10:02:59 +0100 |
---|---|---|
committer | Guillermo Ramos | 2020-02-14 10:02:59 +0100 |
commit | bd2f7d90548ac7258bd291cb7400b03fd78f2b3c (patch) | |
tree | 250984ec8f4467e9041061d84649e4c3b895c451 /lib/waev_web/controllers | |
parent | ae42f0f07d2cfe9d3b184e4a2b0bd9f8da8ad9db (diff) | |
download | waev-bd2f7d90548ac7258bd291cb7400b03fd78f2b3c.tar.gz |
Pagination
Diffstat (limited to 'lib/waev_web/controllers')
-rw-r--r-- | lib/waev_web/controllers/exports_controller.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/waev_web/controllers/exports_controller.ex b/lib/waev_web/controllers/exports_controller.ex index 8d16cb5..a5a1f51 100644 --- a/lib/waev_web/controllers/exports_controller.ex +++ b/lib/waev_web/controllers/exports_controller.ex @@ -7,7 +7,7 @@ defmodule WaevWeb.ExportsController do case Waev.Export.get(id, page, size) do {:ok, export} -> - render(conn, "show.html", id: id, export: export, page: page, size: size) + render(conn, "show.html", id: id, export: export) :error -> conn |