Skip to content

Commit

Permalink
Fix order reloading in case where orders are removed
Browse files Browse the repository at this point in the history
  • Loading branch information
generalpiston committed Mar 21, 2018
1 parent a9732d5 commit e50dd4a
Show file tree
Hide file tree
Showing 7 changed files with 500 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
};
1 change: 1 addition & 0 deletions actions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export const removeProcessing = createAction(Actions.REMOVE_PROCESSING);
export const setBaseToken = createAction(Actions.SET_BASE_TOKEN);
export const setError = createAction(Actions.SET_ERROR);
export const setNetwork = createAction(Actions.SET_NETWORK);
export const setOrders = createAction(Actions.SET_ORDERS);
export const setProducts = createAction(Actions.SET_PRODUCTS);
export const setQuoteToken = createAction(Actions.SET_QUOTE_TOKEN);
export const setWallet = createAction(Actions.SET_WALLET);
Expand Down
1 change: 1 addition & 0 deletions constants/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const REMOVE_PROCESSING = "REMOVE_PROCESSING";
export const SET_BASE_TOKEN = "SET_BASE_TOKEN";
export const SET_ERROR = "SET_ERROR";
export const SET_NETWORK = "SET_NETWORK";
export const SET_ORDERS = "SET_ORDERS";
export const SET_PRODUCTS = "SET_PRODUCTS";
export const SET_QUOTE_TOKEN = "SET_QUOTE_TOKEN";
export const SET_TOKENS = "SET_TOKENS";
Expand Down
Loading

0 comments on commit e50dd4a

Please sign in to comment.