From 8a0745630d791a1344458f7225a6a2326f6df272 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Wed, 8 Mar 2023 15:27:20 +0100 Subject: [PATCH] basehub: prepend to c.JupyterHub.template_paths --- helm-charts/basehub/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-charts/basehub/values.yaml b/helm-charts/basehub/values.yaml index fbfd76cdf..0a7d4d069 100644 --- a/helm-charts/basehub/values.yaml +++ b/helm-charts/basehub/values.yaml @@ -460,7 +460,7 @@ jupyterhub: extraConfig: 01-custom-theme: | from z2jh import get_config - c.JupyterHub.template_paths.extend(['/usr/local/share/jupyterhub/custom_templates/']) + c.JupyterHub.template_paths.insert(0,'/usr/local/share/jupyterhub/custom_templates') c.JupyterHub.template_vars.update({ 'custom': get_config('custom.homepage.templateVars') })