mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
commit
86ad9564a0
@ -1,8 +1,15 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## Current Develop Branch
|
## Current Develop Branch
|
||||||
|
|
||||||
|
## 7.0.0 Fri Aug 02 2019
|
||||||
- [#6828](https://github.com/MetaMask/metamask-extension/pull/6828): Capitalized speed up label to match rest of UI
|
- [#6828](https://github.com/MetaMask/metamask-extension/pull/6828): Capitalized speed up label to match rest of UI
|
||||||
- [#6833](https://github.com/MetaMask/metamask-extension/pull/6833): Fix "npm install" failing due to pinned sub-dependency
|
- [#6874](https://github.com/MetaMask/metamask-extension/pull/6928): Allows skipping of seed phrase challenge during onboarding, and completing it at a later time
|
||||||
|
- [#6900](https://github.com/MetaMask/metamask-extension/pull/6900): Prevent opening of asset dropdown if no tokens in account
|
||||||
|
- [#6904](https://github.com/MetaMask/metamask-extension/pull/6904): Set privacy mode as default
|
||||||
|
- [#6914](https://github.com/MetaMask/metamask-extension/pull/6914): Adds Address Book feature
|
||||||
|
- [#6928](https://github.com/MetaMask/metamask-extension/pull/6928): Disable Copy Tx ID and block explorer link for transactions without hash
|
||||||
|
- [#6967](https://github.com/MetaMask/metamask-extension/pull/6967): Fix mobile sync
|
||||||
|
|
||||||
## 6.7.3 Thu Jul 18 2019
|
## 6.7.3 Thu Jul 18 2019
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "__MSG_appName__",
|
"name": "__MSG_appName__",
|
||||||
"short_name": "__MSG_appName__",
|
"short_name": "__MSG_appName__",
|
||||||
"version": "6.7.3",
|
"version": "7.0.0",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"author": "https://metamask.io",
|
"author": "https://metamask.io",
|
||||||
"description": "__MSG_appDescription__",
|
"description": "__MSG_appDescription__",
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 472px;
|
width: 472px;
|
||||||
height: 116px;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
@ -37,7 +36,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.home-notification-wrapper--show-all {
|
.home-notification-wrapper--show-all {
|
||||||
height: 356px;;
|
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
||||||
|
@ -18,7 +18,12 @@ export default class MultipleNotifications extends PureComponent {
|
|||||||
|
|
||||||
const notificationsToBeRendered = notifications.filter(notificationConfig => notificationConfig.shouldBeRendered)
|
const notificationsToBeRendered = notifications.filter(notificationConfig => notificationConfig.shouldBeRendered)
|
||||||
|
|
||||||
return (<div
|
if (notificationsToBeRendered.length === 0) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
className={classnames(...classNames, {
|
className={classnames(...classNames, {
|
||||||
'home-notification-wrapper--show-all': showAll,
|
'home-notification-wrapper--show-all': showAll,
|
||||||
'home-notification-wrapper--show-first': !showAll,
|
'home-notification-wrapper--show-first': !showAll,
|
||||||
@ -33,6 +38,7 @@ export default class MultipleNotifications extends PureComponent {
|
|||||||
'flipped': !showAll,
|
'flipped': !showAll,
|
||||||
})} /> : null}
|
})} /> : null}
|
||||||
</div>
|
</div>
|
||||||
</div>)
|
</div>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user