From d9f7ebcb79258de3c4ceecc504d4090755919999 Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Tue, 26 Dec 2023 16:12:00 -0500 Subject: [PATCH] Update util calls --- templates/settings.html | 2 +- templates/subreddit.html | 2 +- templates/user.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/settings.html b/templates/settings.html index 8d841c0..07ad84b 100644 --- a/templates/settings.html +++ b/templates/settings.html @@ -4,7 +4,7 @@ {% block title %}Libreddit Settings{% endblock %} {% block search %} - {% call utils::search("".to_owned(), "", "") %} + {% call utils::search("".to_owned(), "") %} {% endblock %} {% block content %} diff --git a/templates/subreddit.html b/templates/subreddit.html index 2584ca3..b0c7dcb 100644 --- a/templates/subreddit.html +++ b/templates/subreddit.html @@ -12,7 +12,7 @@ {% endblock %} {% block subscriptions %} - {% call utils::sub_list(sub.name.as_str(), "wide") %} + {% call utils::sub_list(sub.name.as_str()) %} {% endblock %} {% block body %} diff --git a/templates/user.html b/templates/user.html index 4dbd03a..039c7c7 100644 --- a/templates/user.html +++ b/templates/user.html @@ -2,7 +2,7 @@ {% import "utils.html" as utils %} {% block search %} - {% call utils::search("".to_owned(), "", "") %} + {% call utils::search("".to_owned(), "") %} {% endblock %} {% block title %}{{ user.name.replace("u/", "") }} (u/{{ user.name }}) - Libreddit{% endblock %}