Skip to content

Commit

Permalink
Merge pull request #1174 from diipakx/UI-issues
Browse files Browse the repository at this point in the history
Site color variable issue fix
  • Loading branch information
Manish Kumar authored May 5, 2021
2 parents 64055c6 + b2a8991 commit bea8ed2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public static void ProcessScss(int PortalID, bool CheckVisibilityPermission)
}

List<string> Css = new List<string>();
foreach (IThemeEditor category in GetCategories(CheckVisibilityPermission))
foreach (IThemeEditor category in GetCategories(CheckVisibilityPermission).OrderBy(o => o.ViewOrder).ToList())
{
List<ThemeEditorValue> themeEditorValues = GetThemeEditorValues(PortalID, category.Guid);
ThemeEditorWrapper editors = GetThemeEditors(PortalID, category.Guid, CheckVisibilityPermission);
Expand Down

0 comments on commit bea8ed2

Please sign in to comment.