Skip to content

Commit 8b1b0dc

Browse files
committed
🐛 Fixing seed order in TS client
1 parent 55bac45 commit 8b1b0dc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clients/typescript/src/ecs/component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ export class Component extends Identifier {
2222
}
2323

2424
seeds(seed?: string): string {
25-
return (seed ?? "") + (this.name ?? "");
25+
return (this.name ?? "") + (seed ?? "");
2626
}
2727
}

docs/REPORT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ xychart
44
title "Bolt Apply System Cost"
55
x-axis ["1C-CPIs:2","2C-CPIs:3","3C-CPIs:4","4C-CPIs:5","5C-CPIs:6","6C-CPIs:7","7C-CPIs:8","8C-CPIs:9","9C-CPIs:10","10C-CPIs:11"]
66
y-axis "CU" 5000 --> 200000
7-
bar [33051,50759,68492,86251,104202,122022,139888,157974,176060,194011]
7+
bar [14633,23134,31660,40212,48956,57569,66228,75107,83986,92730]
88
bar [6065,11042,16014,20986,25958,30934,35929,41116,46111,51107]
99
```

0 commit comments

Comments
 (0)