Skip to content

Commit 70cab9e

Browse files
committed
fix #306: cap % values to 0-100
1 parent 4442c11 commit 70cab9e

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

client/scripts/components/CategoryModal.jsx

+1-6
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,7 @@ function CategoryModal ({ categoryManager, disablePercentView = false, onClose =
121121
<button
122122
type='button'
123123
className='btn btn-outline-secondary'
124-
onClick={() => {
125-
const total = percents.reduce((a, b) => a + b, 0);
126-
percents[index] = 100 - total + percents[index];
127-
categoryManager.categoryPercents[index] = percents[index];
128-
setPercents([...percents]);
129-
}}
124+
onClick={() => adjustPercent(100 - percents.reduce((a, b) => a + b))}
130125
>
131126
Max
132127
</button>

client/scripts/components/CategoryModal.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)