From 6383b6be743c18f64472686b6e95f49687045916 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Sun, 22 Oct 2023 23:02:33 +0200 Subject: [PATCH] JS: adjustment to new function signature --- binderhub/static/js/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/binderhub/static/js/index.js b/binderhub/static/js/index.js index 8b7ae9942..536a4e278 100644 --- a/binderhub/static/js/index.js +++ b/binderhub/static/js/index.js @@ -150,7 +150,7 @@ function indexMain() { $("#provider_prefix-selected").text($(this).text()); $("#provider_prefix").val($(this).attr("value")); - updateRepoText(); + updateRepoText(BASE_URL); updateUrls(BADGE_BASE_URL); }); @@ -164,7 +164,7 @@ function indexMain() { updateUrls(BADGE_BASE_URL); }); updatePathText(); - updateRepoText(); + updateRepoText(BASE_URL); $("#repository").on("keyup paste change", function () { updateUrls(BADGE_BASE_URL);