Skip to content

Commit ddfcc60

Browse files
author
Ariano Fonseca Ângelo
committed
v3.0.3
- Minor bugfix
1 parent c13729c commit ddfcc60

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Accept cryptocurrency payments on your Magento store
77

88
```
99
Magento >= 2.4
10+
Magento >= 2.3.5
1011
```
1112

1213
### Description
@@ -140,5 +141,8 @@ The easiest and fastest way is via our live chat on our [website](https://crypta
140141
#### 3.0.2
141142
* Minor fixes
142143

144+
#### 3.0.3
145+
* Minor fixes
146+
143147
### Upgrade Notice
144148
* No breaking changes.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cryptapi/cryptapi",
33
"description": "CryptAPI's Magento extension",
44
"type": "magento2-module",
5-
"version": "3.0.2",
5+
"version": "3.0.3",
66
"require": {
77
"magento/module-payment": "100.1.*",
88
"magento/module-checkout": "100.1.*",

lib/CryptAPIHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public static function sig_fig($value, $digits)
252252
}
253253

254254
$answer = ($decimalPlaces > 0) ?
255-
number_format($value, $decimalPlaces) : round($value, $decimalPlaces);
255+
number_format($value, $decimalPlaces, '.', '') : round($value, $decimalPlaces);
256256
return $answer;
257257
}
258258

view/frontend/web/css/cryptapi.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,16 @@
8989
}
9090

9191
.ca_details_input span {
92-
font-size: 20px;
92+
font-size: 18px;
9393
display: flex;
9494
align-items: center;
9595
justify-content: center;
9696
font-weight: 600;
9797
height: 100%;
9898
padding: 0 8%;
9999
line-height: 20px;
100+
white-space: normal;
101+
line-break: anywhere;
100102
}
101103

102104
.ca_copy {

0 commit comments

Comments
 (0)