From 802cd86d384ccd9ae0bdb212d85c3b456abd797c Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 3 Nov 2021 19:14:36 +0000 Subject: [PATCH] Don't show date icon on new reminder --- webapp_create_post.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/webapp_create_post.py b/webapp_create_post.py index 2857cf64e..064b4e8f4 100644 --- a/webapp_create_post.py +++ b/webapp_create_post.py @@ -205,10 +205,12 @@ def htmlNewPost(cssCache: {}, mediaInstance: bool, translate: {}, isNewReminder = True # the date and time - dateAndTimeStr = \ - '

\n' + dateAndTimeStr = '

\n' + if not isNewReminder: + dateAndTimeStr += \ + '\n' # select a date and time for this post dateAndTimeStr += '\n' @@ -216,7 +218,7 @@ def htmlNewPost(cssCache: {}, mediaInstance: bool, translate: {}, dateAndTimeStr += '

\n' + '\n

\n' showPublicOnDropdown = True messageBoxHeight = 400