Remove stray character

merge-requests/8/head
Bob Mottram 2020-11-04 13:00:03 +00:00
parent 36fa7c2cb9
commit 26c8c71ce8
2 changed files with 2 additions and 2 deletions

View File

@ -746,7 +746,7 @@ input[type=submit]:hover {
.newPostDropdown > label:after,
.newPostDropdown > a[role="button"]:after {
content: "\f0d7";
content: "";
font-family: 'Bedstead';
display: inline-block;
margin-left: 6px;

View File

@ -2437,7 +2437,7 @@ def htmlNewPostDropDown(scopeIcon: str, scopeDescription: str,
dropDownContent += ' data-toggle="newPostDropdown">\n'
dropDownContent += ' <img loading="lazy" alt="" title="" src="/' + \
iconsDir + '/' + scopeIcon + '"/><b>' + \
scopeDescription + '</b></label>\n'
scopeDescription.strip() + '</b></label>\n'
dropDownContent += ' <ul>\n'
if showPublicOnDropdown: