Skip to content

Commit

Permalink
fix: update static files path
Browse files Browse the repository at this point in the history
  • Loading branch information
iankressin committed Dec 18, 2024
1 parent a7cbd8c commit 22e2541
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/apps/research/admin/article_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ def current_slug_history(self, obj):

class Media:
css = {
'all': ('/static/article_admin.css',)
'all': ('/article_admin.css',)
}
js = ('/static/article_admin.js',)
js = ('/article_admin.js',)

def display_authors(self, obj):
"""Return a comma-separated list of authors for the article."""
Expand Down

0 comments on commit 22e2541

Please sign in to comment.