Skip to content

Commit

Permalink
Fix inconsistency with max lenght
Browse files Browse the repository at this point in the history
  • Loading branch information
thejaviertc committed Aug 2, 2023
1 parent 0613837 commit 5a5b5c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Graph.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
labels: steamUser.addons.map(function (addon: IAddon) {
let title = addon["title"];
if (title.length > 27) {
if (title.length >= 30) {
title = title.substring(0, 27) + "...";
}
Expand Down

0 comments on commit 5a5b5c4

Please sign in to comment.