From 3850e162805aed95d03b6f735fb8f355fd5565b2 Mon Sep 17 00:00:00 2001 From: David Torosyan Date: Sat, 15 Oct 2016 17:13:55 -0700 Subject: [PATCH] Fix boostrapper-datetimepicker imports (#586) When the base url is set, resource file imports need a forward slash at the beginning. Since it's missing from the datepicker.min.css link, the Landing Page fails to load correctly causing odd behavior. --- PlexRequests.UI/Helpers/BaseUrlHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PlexRequests.UI/Helpers/BaseUrlHelper.cs b/PlexRequests.UI/Helpers/BaseUrlHelper.cs index 2ce349ec0..67fdc74cf 100644 --- a/PlexRequests.UI/Helpers/BaseUrlHelper.cs +++ b/PlexRequests.UI/Helpers/BaseUrlHelper.cs @@ -122,8 +122,8 @@ namespace PlexRequests.UI.Helpers var sb = new StringBuilder(); var startUrl = $"{content}/Content"; - sb.AppendLine($""); - sb.AppendLine($""); + sb.AppendLine($""); + sb.AppendLine($""); return helper.Raw(sb.ToString()); }