Skip to content

Commit

Permalink
housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
beawitcht committed May 10, 2024
1 parent bb83d06 commit bf8c721
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ jobs:
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3
if: ${{ matrix.language == 'javascript' || matrix.language == 'python' }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ 3.10 ]
python-version: ["3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions app/static/js/transinformed.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function checkAgeStatus() {
privateSelector.hidden = true;
privateProviderList.value = "I haven't chosen a provider yet";
bridgingDesired.parentNode.hidden = true;
bridgingDesired.checked = false
bridgingDesired.checked = false;
bloodTests.parentNode.hidden = true;
bloodTests.checked = false;
grcCheck.parentNode.hidden = true;
Expand Down Expand Up @@ -239,7 +239,7 @@ function privateProviderConditions() {
if (privateProviderList.value === "GenderGP") {
privateProviderList.classList.remove("is-valid");
privateProviderList.classList.add("is-invalid");
privateProviderWarningMessage.innerText = "This provider is not based in the UK, which deters some GPs from agreeing to shared care."
privateProviderWarningMessage.innerText = "This provider is not based in the UK, which deters some GPs from agreeing to shared care.";
}
else if (privateProviderList.value.includes("Other") || privateProviderList.value.includes("haven't chosen")) {
privateProviderList.classList.remove("is-invalid");
Expand Down

0 comments on commit bf8c721

Please sign in to comment.