Skip to content

Commit 5c20e83

Browse files
feat(ui): Better incation score (#1128)
part of #1104 ### PR Checklist - [x] The PR title follows [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) - [x] Is this closing an open issue? If so, link it, else include a proper description of the changes and rason behind them. - [x] Does the PR have changes to the frontend? If so, include screenshots or a recording of the changes. <br/>If it affect colors, please include screenshots/recording in both light and dark mode. - [x] Does the PR have changes to the backend? If so, make sure tests are added. <br/>And if changing dababase queries, be sure you have ran `sqlx prepare` and committed the changes in the `.sqlx` directory. --------- Co-authored-by: Leo Kettmeir <[email protected]>
1 parent 8144132 commit 5c20e83

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

api/src/db/models.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ pub struct PackageVersionMeta {
436436
pub has_readme_examples: bool,
437437
pub all_entrypoints_docs: bool,
438438
pub percentage_documented_symbols: f32,
439-
pub all_fast_check: bool,
439+
pub all_fast_check: bool, // mean no slow types
440440
pub has_provenance: bool,
441441
}
442442

frontend/routes/package/score.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ function ScoreInfo(props: {
8686
</span>
8787
</div>
8888
<div class="text-tertiary text-sm text-center mt-6">
89-
The JSR score is a measure of the overall quality of a package, based
90-
on a number of factors such as documentation and runtime
91-
compatibility.
89+
The JSR score is an overall measure of the quality of the latest
90+
version of a package, based on on factors such as documentation and
91+
runtime compatibility.
9292
</div>
9393
</div>
9494

0 commit comments

Comments
 (0)