From 7a337456c68b37ea8d53de4cafee63c66e85acef Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Sat, 9 Apr 2022 13:34:39 +0100 Subject: [PATCH] Fix line length error --- Community/Tdarr_Plugin_00td_filter_by_size.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Community/Tdarr_Plugin_00td_filter_by_size.js b/Community/Tdarr_Plugin_00td_filter_by_size.js index 468344e..2e9ae67 100644 --- a/Community/Tdarr_Plugin_00td_filter_by_size.js +++ b/Community/Tdarr_Plugin_00td_filter_by_size.js @@ -16,7 +16,8 @@ const details = () => ({ type: 'text', }, tooltip: - 'Enter the upper bound size in MB for files which should be processed. Files above this size won\'t be processed.', + 'Enter the upper bound size in MB for files which should be processed.' + + ' Files above this size won\'t be processed.', }, { name: 'lowerBound', @@ -26,7 +27,8 @@ const details = () => ({ type: 'text', }, tooltip: - 'Enter the lower bound size in MB for files which should be processed. Files below this size won\'t be processed.', + 'Enter the lower bound size in MB for files which should be processed.' + + ' Files below this size won\'t be processed.', }, ], });