Parcourir la source

bid Store - removed testing code

master
George Williams il y a 4 ans
Parent
révision
b5270b3470
1 fichiers modifiés avec 0 ajouts et 2 suppressions
  1. 0
    2
      src/store/modules/processFlow/bid.js

+ 0
- 2
src/store/modules/processFlow/bid.js Voir le fichier

@@ -14,14 +14,12 @@ export default {
14 14
     },
15 15
     setBids(state, bid) {
16 16
       state.bidItems = bid;
17
-      alert(JSON.stringify(bid));
18 17
     },
19 18
     addToBids(state, bid) {
20 19
       state.bidItems.push(bid);
21 20
     },
22 21
     updateBidList(state, bid) {
23 22
       state.bidItems.find(item => item.id === bid.id).status = bid.status;
24
-      console.log(JSON.stringify(bid));
25 23
     }
26 24
   },
27 25
   getters: {},

Chargement…
Annuler
Enregistrer