Skip to content

Commit 6b0b9f3

Browse files
committed
fix: temporary disable chart tooltip
1 parent abaa83f commit 6b0b9f3

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "browser-extension",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"private": true,
55
"dependencies": {
66
"@mintlayer/entropy-generator": "^1.0.4",

public/manifestDefault.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "Mojito - A Mintlayer Wallet",
4-
"version": "1.3.2",
4+
"version": "1.3.3",
55
"short_name": "Mojito",
66
"description": "Mojito is a non-custodial decentralized crypto wallet that lets you send and receive BTC and ML from any other address.",
77
"homepage_url": "https://www.mintlayer.org/",

public/manifestFirefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "Mojito - A Mintlayer Wallet",
4-
"version": "1.3.2",
4+
"version": "1.3.3",
55
"description": "Mojito is a non-custodial decentralized crypto wallet that lets you send and receive BTC and ML from any other address.",
66
"homepage_url": "https://www.mintlayer.org/",
77
"icons": {
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
.chart-tooltip {
2+
display: none;
23
position: absolute;
3-
text-align: center;
4+
/* text-align: center;
45
height: 50px;
56
padding: 5px 15px;
67
font: 12px sans-serif;
78
background: rgb(var(--color-extra-light-gray));
89
border: 0px;
910
border-radius: 8px;
1011
pointer-events: none;
11-
opacity: 0;
12+
opacity: 0; */
1213
}

src/components/composed/Navigation/Navigation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ const Navigation = ({ customNavigation }) => {
183183
Logout
184184
</li>
185185
)}
186-
<span className="slider-version">v1.3.2</span>
186+
<span className="slider-version">v1.3.3</span>
187187
</ul>
188188
</>
189189
)

src/pages/CreateRestore/CreateRestore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const CreateRestorePage = () => {
7676
className="footnote-version"
7777
data-testid="footnote-name"
7878
>
79-
v1.3.2
79+
v1.3.3
8080
</small>
8181
</div>
8282
</div>

0 commit comments

Comments
 (0)