Skip to content

Commit

Permalink
Merge pull request #99 from AII-the-time/dev
Browse files Browse the repository at this point in the history
Fix: test seed water price
  • Loading branch information
raipen authored Nov 23, 2023
2 parents c7e5241 + 0bb6ea2 commit 035302f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seeding/testSeed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const materialData = materialRawData.split('\n').slice(2).map((row) => {
name,
amount: parseInt(amount),
unit,
price:price===""?Math.floor(Math.random() * 10000+2000).toString():price
price:price===""?undefined:price
};
});

Expand Down

0 comments on commit 035302f

Please sign in to comment.