forked from M-Labs/web2019
fix(issue11): Removess useless info rule message
This commit is contained in:
parent
12650be390
commit
9b4bb0fd7c
|
@ -1562,7 +1562,9 @@ class Shop extends React.PureComponent {
|
|||
}
|
||||
|
||||
if (nbUsedSlot > itemsCloned[idx].nbrSlotMax) {
|
||||
if (itemsCloned[idx].rules.maxSlot.message) {
|
||||
rules[itemsCloned[idx].rules.maxSlot.type] = {...itemsCloned[idx].rules.maxSlot};
|
||||
}
|
||||
itemsData[idx].warnings.maxSlotWarning = {...itemsCloned[idx].rules.maxSlotWarning};
|
||||
}
|
||||
|
||||
|
@ -1701,8 +1703,10 @@ class Shop extends React.PureComponent {
|
|||
}
|
||||
|
||||
if (nbUsedSlot > 0) {
|
||||
if (itemsCloned[idx].rules.maxSlot.message) {
|
||||
rules[itemsCloned[idx].rules.maxSlot.type] = {...itemsCloned[idx].rules.maxSlot};
|
||||
}
|
||||
}
|
||||
if (nbUsedSlot > itemsCloned[idx].nbrSlotMax) {
|
||||
itemsData[idx].warnings.maxSlotWarning = {...itemsCloned[idx].rules.maxSlotWarning};
|
||||
}
|
||||
|
|
|
@ -359,7 +359,7 @@ const shop_data = {
|
|||
type: 'hd68-max-slot',
|
||||
icon: '/shop/icon-reminder.svg',
|
||||
name: 'HD68-IDC',
|
||||
message: 'HD68-IDC has at most 4 IDC-BNC adapters.',
|
||||
message: null,
|
||||
},
|
||||
maxSlotWarning: {
|
||||
type: 'hd68-max-slot-warning',
|
||||
|
|
Loading…
Reference in New Issue