Fix not-disappearing warnings and clocker clock slots

Signed-off-by: Egor Savkin <es@m-labs.hk>
Egor Savkin 2023-09-25 14:16:49 +08:00
parent ab9718d6a5
commit fda37da6d5
1 changed files with 2 additions and 1 deletions

View File

@ -2109,6 +2109,7 @@ class Shop extends React.PureComponent {
if (idx in this.state.columns.cart.itemsData && this.state.columns.cart.itemsData[idx].options_data) {
itemsCloned[idx].options_data = this.state.columns.cart.itemsData[idx].options_data;
}
itemsData[idx].warnings = {};
});
@ -2264,7 +2265,7 @@ class Shop extends React.PureComponent {
}, 0);
if (idx in itemsData) {
if (itemsData[idx].nbrCurrentClock) {
if (itemsData[idx].nbrCurrentClock && itemsData[idx].type !== "clocker") {
itemsData[idx].nbrCurrentClock += nbrCurrentClock;
} else {
itemsData[idx].nbrCurrentClock = nbrCurrentClock;