Skip to content
This repository has been archived by the owner on Nov 10, 2023. It is now read-only.

Commit

Permalink
Sync master dev (#656)
Browse files Browse the repository at this point in the history
* v1.7.3 (#611)

* Fix #597: USD value not load (#609)

* Converts all the addresses to checksum values

* Fix for empty address

* fix the order of transactions, change updateSafe to upgradeSafe to avoid naming confusion with the updateSafe action (#610)

* Fix #596: Notification when safe is already updated (#599)

* Fix notification of update if the safe is already updated

* Makes the notification clickable
Displays the notification for owners only

* Identify upgrade tx

* Add red badge to Settings tab

* Fixs Padding
Removes the red dot if the user is not an owner

Co-authored-by: Fernando <[email protected]>

Co-authored-by: Fernando <[email protected]>
Co-authored-by: Agustin Pane <[email protected]>

* Update package.json (#612)

* Add public url to prod webpack config (#615)

* add public url to prod webpack config

* modify travis/webpack config to add public url

* add slash

* cherry pick new travis yml merge commit (#620)

* V1.7.5 release (#641)

* use hash history

* update package json

* BUG: App index.html cached on production (#642)

* remove caching for webapp index.html

* keep --delete flag

Co-authored-by: Mikhail Mikheev <[email protected]>
Co-authored-by: Fernando <[email protected]>
Co-authored-by: Agustin Pane <[email protected]>
  • Loading branch information
4 people committed Mar 18, 2020
1 parent 7a1900d commit e165d56
Show file tree
Hide file tree
Showing 5 changed files with 374 additions and 948 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ before_install:
# Install truffle
- yarn global add truffle
script:
- ./config/travis/build.sh
- bash ./config/travis/build.sh
after_success:
# Pull Request - Deploy it to a review environment
# Travis doesn't do deploy step with pull requests builds
Expand Down
1 change: 0 additions & 1 deletion config/travis/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ elif [[ "$TRAVIS_BRANCH" == "development" ]]; then
export NODE_ENV=development;
fi


yarn lint:check
yarn prettier:check
yarn build
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,4 @@ const TxType = ({ origin, txType }: { txType: TransactionType, origin: string |

return <IconText iconUrl={iconUrl} text={text} />
}

export default TxType
4 changes: 3 additions & 1 deletion src/routes/safe/store/selectors/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,10 @@ export const safeSelector: OutputSelector<GlobalState, RouterProps, SafeSelector
if (!address) {
return undefined
}
const checksumed = getWeb3().utils.toChecksumAddress(address)
const safe = safes.get(checksumed)

return safes.get(address)
return safe
},
)

Expand Down
Loading

0 comments on commit e165d56

Please sign in to comment.