From 1dad103920b5e56468581585badadb1d5f96cfe0 Mon Sep 17 00:00:00 2001 From: Sebastian Urchs Date: Thu, 30 Jan 2025 14:58:57 -0500 Subject: [PATCH] [FIX] Custom script addition in header (#469) * [ENH] Move custom scripts to header That's where we thought they were going all along. But then we added them to the body and they still worked, so apparently we forgot about it. * [FIX] Correct the script placeholder in GH workflow * Bumped version to v0.9.3 --------- Co-authored-by: Neurobagel Bot --- .github/workflows/deploy.yaml | 2 +- index.html | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 26084fcb..44395449 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -35,7 +35,7 @@ jobs: run: | add_script='' # Need to use single quotes around sed to avoid ! to be interpreted as a history expansion character - sed -i 's||'"${add_script}"'|' index.html + sed -i 's||'"${add_script}"'|' index.html - name: Set up Node uses: actions/setup-node@v4 diff --git a/index.html b/index.html index ab329441..eb970d20 100644 --- a/index.html +++ b/index.html @@ -5,10 +5,10 @@ Neurobagel Query Tool +
- diff --git a/package.json b/package.json index d4277521..85c4e26f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-query-tool", "private": true, - "version": "v0.9.1", + "version": "v0.9.3", "type": "module", "scripts": { "dev": "vite",