Skip to content

Commit

Permalink
fix: Fix the logo in the top left corner not showing up
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoid committed Aug 12, 2024
1 parent 4accd11 commit 4e9262a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ DOCKER_TAG := ${VERSION}
DOCKER_IMAGE := ${DOCKER_OWNER}/${DOCKER_APP}:$(DOCKER_TAG)
SECRET_KEY := $(shell openssl rand -base64 12)
APP_LIST ?= api appstore core frontend middleware product
BRANDS := braini bdc heal restartr scidas eduhelx argus tracs eduhelx-sandbox eduhelx-dev eduhelx-dev-student eduhelx-dev-professor
BRANDS := braini bdc heal restartr scidas eduhelx argus tracs eduhelx-sandbox eduhelx-dev eduhelx-dev-student eduhelx-dev-professor eduhelx-student eduhelx-professor
MANAGE := ${PYTHON} appstore/manage.py
SETTINGS_MODULE := ${DJANGO_SETTINGS_MODULE}

Expand Down
5 changes: 5 additions & 0 deletions appstore/core/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ def get_brand_details(brand):
"heal": {"name": "NIH Heal Initiative", "logo": "logo.png"},
"argus": {"name": "Argus Array", "logo": "logo.png"},
"eduhelx": {"name": "EduHelx", "logo": "logo.png"},
"eduhelx-dev": {"name": "EduHelx", "logo": "logo.png"},
"eduhelx-dev-student": {"name": "EduHelx", "logo": "logo.png"},
"eduhelx-dev-professor": {"name": "EduHelx", "logo": "logo.png"},
"eduhelx-student": {"name": "EduHelx", "logo": "logo.png"},
"eduhelx-professor": {"name": "EduHelx", "logo": "logo.png"},
"testing": {"name": "Testing", "logo": "logo.png"},
"ordrd": {"name": "Ordr D", "logo": "logo.png"},
}[brand]
Expand Down

0 comments on commit 4e9262a

Please sign in to comment.