Skip to content

Annotations_JSON_data#149

Closed
Taktar wants to merge 209 commits into
datafrom
main
Closed

Annotations_JSON_data#149
Taktar wants to merge 209 commits into
datafrom
main

Conversation

@Taktar
Copy link
Copy Markdown
Collaborator

@Taktar Taktar commented Oct 20, 2025

adding annotation json files into data branch

Burhan Khan and others added 30 commits September 30, 2024 16:07
… into correct directories, edited the html file to match figma design (without image)
Basic Text display for bone set
Created a Python file for Flask, attempted to use HTMX, and tried to …
…nd displayed properly but still working on getting the annotations to be pulled and displayed properly.
…ain and displayed the image from the data branch correctly.
…ain and displayed the image from the data branch correctly.
…ain and displayed the image from the data branch correctly. Also had to delete the directories we weren't using anymore.
…ain and displayed the image from the data branch correctly. Also had to delete the directories we weren't using anymore. Made it more dynamic in order to have it be less hardcoded for the future.
strejoarciles and others added 22 commits September 18, 2025 14:37
…ic-ui-polish

Implemented pop-up functionality for help modal.
…-annotation-display-using-mock-data

Implement frontend mock data display for bone images and annotations
…unctionality-with-htmx

Search Feature Implemetation
- Update package.json to properly open app on port 5500
- Fix sidebar toggle functionality using getComputedStyle
- Remove unused files: data_extraction/api.py, output.json, mock-bone-data.json

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
…tributing.md template with new cantact information
added good first issue template,tastcard template and updated the con…
@Taktar Taktar requested a review from UcheWendy October 20, 2025 00:23
@Taktar Taktar self-assigned this Oct 20, 2025
@Taktar Taktar requested a review from jacksayshi as a code owner October 20, 2025 00:23
Comment on lines +12 to +27
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Install dependencies
run: npm install

- name: Run ESLint
run: npm run lint

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}

Copilot Autofix

AI 7 months ago

To address this issue, we should add an explicit permissions block to the workflow. Since the jobs in the workflow merely checkout code, set up Node.js, install dependencies, and run ESLint—none of which require write access—the most restrictive sensible permission is contents: read. This block can be added at either the root of the workflow (applying to all jobs by default) or inside the job definition (affecting only the specific job). For simplicity and maintainability, adding it at the root is recommended. Update .github/workflows/lint.yml by inserting the following YAML block just after the workflow name (i.e., after line 1):

permissions:
  contents: read

No additional methods, imports, or definitions are required.

Suggested changeset 1
.github/workflows/lint.yml

Autofix patch

Autofix patch
Run the following command in your local git repository to apply this patch
cat << 'EOF' | git apply
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -1,4 +1,6 @@
 name: Lint JavaScript
+permissions:
+  contents: read
 
 on:
   push:
EOF
@@ -1,4 +1,6 @@
name: Lint JavaScript
permissions:
contents: read

on:
push:
Copilot is powered by AI and may make mistakes. Always verify output.
Unable to commit as this autofix suggestion is now outdated
Taktar and others added 2 commits October 19, 2025 19:49
all acceptance critteria met. 2 scripts for display logic and text labels plus documentations
@UcheWendy UcheWendy closed this Oct 20, 2025
@UcheWendy
Copy link
Copy Markdown
Collaborator

cannot merge data branch to main

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants