From bb8826a078249ad1f8b6e852b5e6aab35912cf86 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Sat, 13 Mar 2021 23:20:29 -0600 Subject: [PATCH] Actually respect the set data.task_list_title_width. --- public/script.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/script.js b/public/script.js index 7b4a075..b63e05b 100644 --- a/public/script.js +++ b/public/script.js @@ -5,6 +5,8 @@ function load_config() { $.get(window.location.href + "config", function(data) { // Set the title. $(".title-wrapper .left span").text(data.task_list_title); + // Set the title width. + $(".title-wrapper .left").width(data.task_list_title_width); // Set up the item list. var $this = $("ul.task-list").empty();