Skip to content
Snippets Groups Projects
Verified Commit 32a29267 authored by Lloyd Meins's avatar Lloyd Meins :thought_balloon:
Browse files

Merge branch 'master' into 569-date-picker-for-date-of-birth-unusable

parents e7616dab 0bacbedd
No related branches found
No related tags found
1 merge request!835Resolve "Date picker for date of birth unusable"
Pipeline #46231 passed with warnings
......@@ -14,6 +14,12 @@ Added
* Allow configuration of database options
Fixed
~~~~~
* Correctly update theme colours on change again
* Show all years between 1900 and 2100 in date pickers
`2.3.1`_ – 2021-12-17
---------------------
......
......@@ -23,7 +23,7 @@ def get_preference(section: str, name: str) -> str:
def clean_scss(*args, **kwargs) -> None:
"""Unlink compiled CSS (i.e. cache invalidation)."""
sass_storage = SassFileStorage()
__, files = sass_storage.listdir("")
__, files = sass_storage.listdir("public")
for source_map in filter(lambda x: x.endswith(".css.map"), files):
sass_storage.delete(source_map)
sass_storage.delete(f"public/{source_map}")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment