Commit 509538fd authored by chechunchi's avatar chechunchi

fix isMultiple

parent 0e07efe1
Pipeline #22469 passed with stages
in 19 minutes
......@@ -72,7 +72,7 @@ export const SelectCardsModal: React.FC<SelectCardsModalProps> = ({
const minMaxText = min === max ? min : `${min}-${max}`;
const isMultiple = !single && min > 1;
const isMultiple = !single && max > 1;
// 判断是否可以提交
useEffect(() => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment