From b39a690b9097d2b765a405fce3a7a7c2f96c94de Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 5 Feb 2021 17:33:31 +0000 Subject: [PATCH] Keyboard navigation format --- webapp_utils.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/webapp_utils.py b/webapp_utils.py index ce6fc0fe2..3cc8b655d 100644 --- a/webapp_utils.py +++ b/webapp_utils.py @@ -883,10 +883,10 @@ def getAvatarImageUrl(session, def htmlKeyboardNavigation(links: {}) -> str: """Given a set of links return the html for keyboard navigation """ - htmlStr = '
' + htmlStr = '
    ' for title, url in links.items(): - htmlStr += '
' + str(title) + '' + htmlStr += '
' return htmlStr