Skip to content

Commit

Permalink
Update delimiter to ~&~ for id's and processing
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWags committed Mar 5, 2024
1 parent d4b311d commit df75137
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export function getSubsets(
setIntersectionMembership[combo] = [];
const name = vSetNames
.filter((_, i) => combo[i] === '1')
.join('-');
.join('~&~');
intersectionName[combo] = name || 'Unincluded';
}

Expand Down
2 changes: 1 addition & 1 deletion packages/upset/src/utils/exports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const generateElementName = (rows: Rows, vSetNames: string[]): Rows => {
const newRows = { ...rows };

Object.values(newRows.values).forEach((r: Row) => {
const splitElName = r['elementName'].split('-');
const splitElName = r['elementName'].split('~&~');

let elName = splitElName.join(', ');

Expand Down

0 comments on commit df75137

Please sign in to comment.