Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor etag #42

Merged
merged 50 commits into from
Nov 22, 2023
Merged

Refactor etag #42

merged 50 commits into from
Nov 22, 2023

Conversation

kafkasl
Copy link

@kafkasl kafkasl commented Oct 25, 2023

Description

The UI does not compute any ETag any longer. Instead does:

  1. POST to API
  2. Response contains ETag and/or signed URL
  3. If there's no signed URL wait for result from worker via socket (or signed URL for s3)

In order to ease caching on the load marker genes, now all the cellsets's names (or keys) are sent to the UI, instead of only the cellset hierarchy key (e.g. we now send 'louvain' + '[louvain-1, louvain-2, ...]' instead of only 'louvaing']. So when the API computes the ETag it will take into account any changes there.

Details

URL to issue

hms-dbmi-cellenics/issues#11

Link to staging deployment URL (or set N/A)

https://ui-ahriman-etag.scp-staging.biomage.net/data-management

Links to any PRs or resources related to this PR

hms-dbmi-cellenics#920
hms-dbmi-cellenics/api#494

Integration test branch

master

Merge checklist

Your changes will be ready for merging after all of the steps below have been completed.

Code updates

Have best practices and ongoing refactors being observed in this PR

  • Migrated any selector / reducer used to the new format.
  • All new dependency licenses have been checked for compatibility.

Manual/unit testing

  • Tested changes using InfraMock locally or no tests required for change, e.g. Kubernetes chart updates.
  • Validated that current unit tests for code work as expected and are sufficient for code coverage or no unit tests required for change, e.g. documentation update.
  • Unit tests written or no unit tests required for change, e.g. documentation update.

Integration testing

You must check the box below to run integration tests on the latest commit on your PR branch.
Integration tests have to pass before the PR can be merged. Without checking the box, your PR
will not pass the required status checks for merging.

  • Started end-to-end tests on the latest commit.

Documentation updates

  • Relevant Github READMEs updated or no GitHub README updates required.
  • Relevant Wiki pages created/updated or no Wiki updates required.

Optional

  • Staging environment is unstaged before merging.
  • Photo of a cute animal attached to this PR.

@github-actions
Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 568.66 KB (🟢 -10.89 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Nine Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 250.01 KB (🟡 +11.15 KB) 818.67 KB
/experiments/[experimentId]/data-exploration 515.87 KB (-4 B) 1.06 MB
/experiments/[experimentId]/data-processing 533.16 KB (-1 B) 1.08 MB
/experiments/[experimentId]/plots-and-tables/dot-plot 489.19 KB (-3 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 481.58 KB (-3 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 581.41 KB (-3 B) 1.12 MB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 494.85 KB (🟡 +11.18 KB) 1.04 MB
/experiments/[experimentId]/plots-and-tables/violin 511.31 KB (-3 B) 1.05 MB
/experiments/[experimentId]/plots-and-tables/volcano 485.28 KB (🟡 +1 B) 1.03 MB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

@github-actions
Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 568.65 KB (🟢 -10.9 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Nine Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 250.01 KB (🟡 +11.15 KB) 818.66 KB
/experiments/[experimentId]/data-exploration 515.87 KB (-4 B) 1.06 MB
/experiments/[experimentId]/data-processing 533.16 KB (-1 B) 1.08 MB
/experiments/[experimentId]/plots-and-tables/dot-plot 489.19 KB (-3 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 481.58 KB (-3 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 581.41 KB (-3 B) 1.12 MB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 494.85 KB (🟡 +11.18 KB) 1.04 MB
/experiments/[experimentId]/plots-and-tables/violin 511.31 KB (-3 B) 1.05 MB
/experiments/[experimentId]/plots-and-tables/volcano 485.28 KB (🟡 +1 B) 1.03 MB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

@github-actions
Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 568.65 KB (🟢 -10.9 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Nine Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 250.01 KB (🟡 +11.15 KB) 818.66 KB
/experiments/[experimentId]/data-exploration 516.04 KB (🟡 +176 B) 1.06 MB
/experiments/[experimentId]/data-processing 533.16 KB (-1 B) 1.08 MB
/experiments/[experimentId]/plots-and-tables/dot-plot 489.36 KB (🟡 +177 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 481.76 KB (🟡 +177 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 581.59 KB (🟡 +177 B) 1.12 MB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 494.85 KB (🟡 +11.18 KB) 1.04 MB
/experiments/[experimentId]/plots-and-tables/violin 511.48 KB (🟡 +177 B) 1.05 MB
/experiments/[experimentId]/plots-and-tables/volcano 485.28 KB (🟡 +1 B) 1.03 MB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 569.56 KB (🟢 -10.78 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Fourteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 238.77 KB (🟢 -491 B) 808.34 KB
/experiments/[experimentId]/data-exploration 521.65 KB (🟡 +5.24 KB) 1.07 MB
/experiments/[experimentId]/data-processing 538.38 KB (🟡 +5.23 KB) 1.08 MB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.7 KB (🟡 +237 B) 644.26 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 494.6 KB (🟡 +5.06 KB) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 485.41 KB (🟡 +5.22 KB) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 486.98 KB (🟡 +5.08 KB) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.28 KB (🟡 +5.22 KB) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 586.81 KB (🟡 +5.29 KB) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.87 KB (🟡 +136 B) 740.43 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 488.52 KB (🟡 +4.86 KB) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 516.7 KB (🟡 +5.08 KB) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 490.49 KB (🟡 +5.22 KB) 1.04 MB
/repository 109.02 KB (🟡 +237 B) 678.58 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 570.28 KB (🟢 -10.06 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Fourteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 239.16 KB (🟢 -61 B) 809.44 KB
/experiments/[experimentId]/data-exploration 521.96 KB (🟡 +5.51 KB) 1.07 MB
/experiments/[experimentId]/data-processing 538.38 KB (🟡 +5.23 KB) 1.08 MB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.74 KB (🟡 +236 B) 645.02 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 494.78 KB (🟡 +5.25 KB) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 485.41 KB (🟡 +5.22 KB) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.12 KB (🟡 +5.23 KB) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.28 KB (🟡 +5.22 KB) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 586.74 KB (🟡 +5.23 KB) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.97 KB (🟡 +237 B) 741.25 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 488.52 KB (🟡 +4.86 KB) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 516.85 KB (🟡 +5.23 KB) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 490.53 KB (🟡 +5.22 KB) 1.04 MB
/repository 109.02 KB (🟡 +237 B) 679.3 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

1 similar comment
Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 570.28 KB (🟢 -10.06 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Fourteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 239.16 KB (🟢 -61 B) 809.44 KB
/experiments/[experimentId]/data-exploration 521.96 KB (🟡 +5.51 KB) 1.07 MB
/experiments/[experimentId]/data-processing 538.38 KB (🟡 +5.23 KB) 1.08 MB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.74 KB (🟡 +236 B) 645.02 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 494.78 KB (🟡 +5.25 KB) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 485.41 KB (🟡 +5.22 KB) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.12 KB (🟡 +5.23 KB) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.28 KB (🟡 +5.22 KB) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 586.74 KB (🟡 +5.23 KB) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.97 KB (🟡 +237 B) 741.25 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 488.52 KB (🟡 +4.86 KB) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 516.85 KB (🟡 +5.23 KB) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 490.53 KB (🟡 +5.22 KB) 1.04 MB
/repository 109.02 KB (🟡 +237 B) 679.3 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 570.27 KB (🟢 -9.6 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Sixteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 239.13 KB (🟡 +190 B) 809.4 KB
/experiments/[experimentId]/data-exploration 522.2 KB (🟡 +2.28 KB) 1.07 MB
/experiments/[experimentId]/data-processing 538.38 KB (🟢 -395 B) 1.08 MB
/experiments/[experimentId]/plots-and-tables 15.7 KB (🟡 +74 B) 585.97 KB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.74 KB (🟡 +248 B) 645.01 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 495.02 KB (🟢 -274 B) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 485.41 KB (🟢 -623 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.36 KB (🟢 -362 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.28 KB (🟢 -664 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 586.98 KB (🟡 +2.08 KB) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.97 KB (🟡 +329 B) 741.23 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 488.52 KB (🟢 -985 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 517.09 KB (🟢 -292 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 490.53 KB (🟢 -620 B) 1.04 MB
/repository 109.02 KB (🟡 +396 B) 679.29 KB
/settings/profile 25.64 KB (🟡 +138 B) 595.9 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 570.27 KB (🟢 -9.6 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Sixteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 239.13 KB (🟡 +190 B) 809.4 KB
/experiments/[experimentId]/data-exploration 522.2 KB (🟡 +2.28 KB) 1.07 MB
/experiments/[experimentId]/data-processing 538.38 KB (🟢 -395 B) 1.08 MB
/experiments/[experimentId]/plots-and-tables 15.7 KB (🟡 +74 B) 585.97 KB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.74 KB (🟡 +248 B) 645.01 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 495.02 KB (🟢 -274 B) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 485.41 KB (🟢 -623 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.36 KB (🟢 -362 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.28 KB (🟢 -664 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 586.98 KB (🟡 +2.08 KB) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.97 KB (🟡 +329 B) 741.23 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 488.52 KB (🟢 -985 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 517.09 KB (🟢 -292 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 490.53 KB (🟢 -620 B) 1.04 MB
/repository 109.02 KB (🟡 +396 B) 679.29 KB
/settings/profile 25.64 KB (🟡 +138 B) 595.9 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 570.27 KB (🟢 -9.6 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Sixteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 239.13 KB (🟡 +190 B) 809.4 KB
/experiments/[experimentId]/data-exploration 522.2 KB (🟡 +2.28 KB) 1.07 MB
/experiments/[experimentId]/data-processing 538.38 KB (🟢 -395 B) 1.08 MB
/experiments/[experimentId]/plots-and-tables 15.7 KB (🟡 +74 B) 585.97 KB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.74 KB (🟡 +248 B) 645.01 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 495.02 KB (🟢 -274 B) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 485.41 KB (🟢 -623 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.36 KB (🟢 -362 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.28 KB (🟢 -664 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 586.98 KB (🟡 +2.08 KB) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.97 KB (🟡 +329 B) 741.23 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 488.52 KB (🟢 -985 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 517.09 KB (🟢 -292 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 490.53 KB (🟢 -620 B) 1.04 MB
/repository 109.02 KB (🟡 +396 B) 679.29 KB
/settings/profile 25.64 KB (🟡 +138 B) 595.9 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 570.36 KB (🟢 -9.5 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Sixteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 239.13 KB (🟡 +190 B) 809.49 KB
/experiments/[experimentId]/data-exploration 522.21 KB (🟡 +2.29 KB) 1.07 MB
/experiments/[experimentId]/data-processing 538.38 KB (🟢 -395 B) 1.08 MB
/experiments/[experimentId]/plots-and-tables 15.7 KB (🟡 +74 B) 586.06 KB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.74 KB (🟡 +248 B) 645.1 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 495.02 KB (🟢 -274 B) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 485.41 KB (🟢 -623 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.36 KB (🟢 -362 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.28 KB (🟢 -664 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 586.98 KB (🟡 +2.08 KB) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.97 KB (🟡 +329 B) 741.33 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 488.52 KB (🟢 -985 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 517.09 KB (🟢 -292 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 490.53 KB (🟢 -620 B) 1.04 MB
/repository 109.02 KB (🟡 +396 B) 679.38 KB
/settings/profile 25.64 KB (🟡 +138 B) 596 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Signed-off-by: Pol Alvarez <[email protected]>
Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 570.12 KB (🟢 -9.75 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Sixteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 239.13 KB (🟡 +190 B) 809.25 KB
/experiments/[experimentId]/data-exploration 522.17 KB (🟡 +2.25 KB) 1.07 MB
/experiments/[experimentId]/data-processing 538.38 KB (🟢 -395 B) 1.08 MB
/experiments/[experimentId]/plots-and-tables 15.7 KB (🟡 +74 B) 585.82 KB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.74 KB (🟡 +248 B) 644.86 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 495 KB (🟢 -291 B) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 485.41 KB (🟢 -623 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.36 KB (🟢 -362 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.28 KB (🟢 -664 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 586.98 KB (🟡 +2.08 KB) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.97 KB (🟡 +329 B) 741.08 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 488.52 KB (🟢 -985 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 517.09 KB (🟢 -292 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 490.53 KB (🟢 -620 B) 1.04 MB
/repository 109.02 KB (🟡 +396 B) 679.14 KB
/settings/profile 25.64 KB (🟡 +138 B) 595.75 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 568.78 KB (🟢 -11.09 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Thirteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 243.33 KB (🟢 -330 B) 812.11 KB
/experiments/[experimentId]/data-exploration 520.17 KB (🟡 +260 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.5 KB (-3 B) 643.27 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 495.53 KB (🟡 +248 B) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 486.02 KB (-2 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.95 KB (🟡 +245 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.93 KB (-2 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 585.14 KB (🟡 +249 B) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.64 KB (-2 B) 739.42 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 489.12 KB (🟢 -377 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 517.61 KB (🟡 +247 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 491.14 KB (-2 B) 1.04 MB
/repository 108.78 KB (-2 B) 677.55 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 568.78 KB (🟢 -11.09 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Thirteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 243.33 KB (🟢 -330 B) 812.11 KB
/experiments/[experimentId]/data-exploration 520.2 KB (🟡 +260 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.59 KB (-3 B) 643.37 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 495.53 KB (🟡 +249 B) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 486.02 KB (-2 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.95 KB (🟡 +246 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.93 KB (-2 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 585.14 KB (🟡 +250 B) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.64 KB (-2 B) 739.42 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 489.12 KB (🟢 -377 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 517.61 KB (🟡 +248 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 491.16 KB (-3 B) 1.04 MB
/repository 108.78 KB (-2 B) 677.56 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 568.78 KB (🟢 -11.09 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Thirteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 243.33 KB (🟢 -330 B) 812.11 KB
/experiments/[experimentId]/data-exploration 520.2 KB (🟡 +260 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.59 KB (-3 B) 643.37 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 495.53 KB (🟡 +249 B) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 486.02 KB (-2 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.95 KB (🟡 +246 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.93 KB (-2 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 585.14 KB (🟡 +250 B) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.64 KB (-2 B) 739.42 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 489.12 KB (🟢 -377 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 517.61 KB (🟡 +248 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 491.16 KB (-3 B) 1.04 MB
/repository 108.78 KB (-2 B) 677.56 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 568.78 KB (🟢 -11.09 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Thirteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 243.33 KB (🟢 -330 B) 812.11 KB
/experiments/[experimentId]/data-exploration 520.2 KB (🟡 +260 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.59 KB (-3 B) 643.37 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 495.53 KB (🟡 +249 B) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 486.02 KB (-2 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.95 KB (🟡 +246 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.93 KB (-2 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 585.14 KB (🟡 +250 B) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.64 KB (-2 B) 739.42 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 489.12 KB (🟢 -377 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 517.61 KB (🟡 +248 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 491.16 KB (-3 B) 1.04 MB
/repository 108.78 KB (-2 B) 677.56 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 568.78 KB (🟢 -11.09 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Thirteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 243.33 KB (🟢 -330 B) 812.11 KB
/experiments/[experimentId]/data-exploration 520.2 KB (🟡 +260 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.59 KB (-3 B) 643.37 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 495.53 KB (🟡 +249 B) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 486.02 KB (-2 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.95 KB (🟡 +246 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.93 KB (-2 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 585.14 KB (🟡 +250 B) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.64 KB (-2 B) 739.42 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 489.12 KB (🟢 -377 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 517.61 KB (🟡 +248 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 491.16 KB (-3 B) 1.04 MB
/repository 108.78 KB (-2 B) 677.56 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

Copy link

📦 Next.js Bundle Analysis for ui

This analysis was generated by the Next.js Bundle Analysis action. 🤖

🎉 Global Bundle Size Decreased

Page Size (compressed)
global 568.78 KB (🟢 -11.09 KB)
Details

The global bundle is the javascript bundle that loads alongside every page. It is in its own category because its impact is much higher - an increase to its size means that every page on your website loads slower, and a decrease means every page loads faster.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

If you want further insight into what is behind the changes, give @next/bundle-analyzer a try!

Thirteen Pages Changed Size

The following pages changed size from the code in this PR compared to its base branch:

Page Size (compressed) First Load
/data-management 243.33 KB (🟢 -330 B) 812.11 KB
/experiments/[experimentId]/data-exploration 520.2 KB (🟡 +261 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/batch-differential-expression 74.59 KB (-3 B) 643.37 KB
/experiments/[experimentId]/plots-and-tables/dot-plot 495.53 KB (🟡 +249 B) 1.04 MB
/experiments/[experimentId]/plots-and-tables/embedding-categorical 486.02 KB (-2 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/embedding-continuous 487.95 KB (🟡 +246 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/frequency 487.93 KB (-2 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/marker-heatmap 585.14 KB (🟡 +250 B) 1.13 MB
/experiments/[experimentId]/plots-and-tables/normalized-matrix 170.64 KB (-2 B) 739.42 KB
/experiments/[experimentId]/plots-and-tables/trajectory-analysis 489.12 KB (🟢 -377 B) 1.03 MB
/experiments/[experimentId]/plots-and-tables/violin 517.61 KB (🟡 +248 B) 1.06 MB
/experiments/[experimentId]/plots-and-tables/volcano 491.16 KB (-3 B) 1.04 MB
/repository 108.78 KB (-2 B) 677.56 KB
Details

Only the gzipped size is provided here based on an expert tip.

First Load is the size of the global bundle plus the bundle for the individual page. If a user were to show up to your website and land on a given page, the first load size represents the amount of javascript that user would need to download. If next/link is used, subsequent page loads would only need to download that page's bundle (the number in the "Size" column), since the global bundle has already been downloaded.

Any third party scripts you have added directly to your app using the <script> tag are not accounted for in this analysis

Next to the size is how much the size has increased or decreased compared with the base branch of this PR. If this percentage has increased by 20% or more, there will be a red status indicator applied, indicating that special attention should be given to this.

@kafkasl kafkasl merged commit 0204a7e into master Nov 22, 2023
12 checks passed
@kafkasl kafkasl deleted the refactor-etag branch November 22, 2023 14:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants