From c3b8b5e554aeb340eaf3407609a81eb3c24f0c90 Mon Sep 17 00:00:00 2001 From: Oliver Stolpe Date: Wed, 26 Jan 2022 11:01:05 +0100 Subject: [PATCH] Fixing Dockerfile to pull iconify icons. (#282) Fixing Release Info icon. --- docker/Dockerfile | 2 +- importer/plugins.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 76342548a..2dc952990 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -105,7 +105,7 @@ RUN cd /usr/src/app && \ DJANGO_SECRET_KEY=for-build-only \ DJANGO_SETTINGS_MODULE=config.settings.production \ DATABASE_URL=postgres://sodar:sodar@fake/sodar \ - python manage.py geticons + python manage.py geticons -c bi cil fa-regular fa-solid fluent gridicons octicon # Prepare static files RUN cd /usr/src/app && \ diff --git a/importer/plugins.py b/importer/plugins.py index f0b583d2b..67dd31ee3 100644 --- a/importer/plugins.py +++ b/importer/plugins.py @@ -19,7 +19,7 @@ class SiteAppPlugin(SiteAppPluginPoint): urls = urlpatterns #: FontAwesome icon ID string - icon = "info-circle" + icon = "bi:info-circle-fill" #: Description string description = "Databases release info app"