diff --git a/changedetectionio/__init__.py b/changedetectionio/__init__.py index 445367bf8..0790de5d0 100644 --- a/changedetectionio/__init__.py +++ b/changedetectionio/__init__.py @@ -2,7 +2,7 @@ # Read more https://github.com/dgtlmoon/changedetection.io/wiki -__version__ = '0.50.6' +__version__ = '0.50.7' from changedetectionio.strtobool import strtobool from json.decoder import JSONDecodeError diff --git a/changedetectionio/blueprint/watchlist/templates/watch-overview.html b/changedetectionio/blueprint/watchlist/templates/watch-overview.html index c867a13a0..a05847627 100644 --- a/changedetectionio/blueprint/watchlist/templates/watch-overview.html +++ b/changedetectionio/blueprint/watchlist/templates/watch-overview.html @@ -81,10 +81,11 @@ document.addEventListener('DOMContentLoaded', function() { {%- if any_has_restock_price_processor -%} {%- set cols_required = cols_required + 1 -%} {%- endif -%} + {%- set ui_settings = datastore.data['settings']['application']['ui'] -%}
{%- set table_classes = [ - 'favicon-enabled' if datastore.data['settings']['application']['ui'].get('favicons_enabled') else 'favicon-not-enabled', + 'favicon-enabled' if 'favicons_enabled' not in ui_settings or ui_settings['favicons_enabled'] else 'favicon-not-enabled', ] -%} @@ -147,7 +148,7 @@ document.addEventListener('DOMContentLoaded', function() {
- {% if datastore.data['settings']['application']['ui'].get('favicons_enabled') %} + {% if 'favicons_enabled' not in ui_settings or ui_settings['favicons_enabled'] %}
{# A page might have hundreds of these images, set IMG options for lazy loading, don't set SRC if we dont have it so it doesnt fetch the placeholder' #} Favicon thumbnail
diff --git a/docs/screenshot.png b/docs/screenshot.png index e6d358262..2c11d9110 100644 Binary files a/docs/screenshot.png and b/docs/screenshot.png differ