Skip to content

Pages - #8

Merged
ajayjagan2511 merged 2 commits into
mainfrom
pages
Aug 10, 2026
Merged

Pages#8
ajayjagan2511 merged 2 commits into
mainfrom
pages

Conversation

@ajayjagan2511

Copy link
Copy Markdown
Collaborator

No description provided.

Copilot AI lite review requested due to automatic review settings August 10, 2026 19:49
@ajayjagan2511
ajayjagan2511 merged commit f8760e8 into main Aug 10, 2026

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adjusts the dataset ingestion on the radeonet.html page to retain duplicate dataset names when parsing the “Website” sheet from BioVFM Datasets.xlsx, so all rows are displayed instead of being deduplicated.

Changes:

  • Removed the “keep first occurrence only” name deduplication logic during XLSX-to-JSON filtering.
  • Updated the filtering comment to reflect that duplicates are now preserved.

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Comment thread radeonet.html
Comment on lines 382 to 386
const rawName = row['Name'] !== undefined && row['Name'] !== null ? String(row['Name']).trim() : '';
// Skip blank or literal "0" names
if (rawName === '' || rawName === '0') return false;
// Deduplicate: keep first occurrence only
if (seenNames.has(rawName)) return false;
seenNames.add(rawName);
// Keeping all duplicate dataset names as requested.
return true;
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.

2 participants