Skip to content

Commit

Permalink
fix thumbnail directory
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Sep 21, 2023
1 parent afee3ee commit b19e9d8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion jhub_apps/launcher/panel_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@

EDIT_APP_BTN_TXT = "Edit App"
CREATE_APP_BTN_TXT = "Create App"
THUMBNAILS_PATH = "~/"

THUMBNAILS_PATH = os.path.expanduser("~/jupyterhub-thumbnails")

if not os.path.exists(THUMBNAILS_PATH):
os.mkdir(THUMBNAILS_PATH)


css = """
.custom-font {
Expand Down

0 comments on commit b19e9d8

Please sign in to comment.