Skip to content

Commit c06d87d

Browse files
committed
wip
1 parent 9310849 commit c06d87d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Bazar.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ abstract class Bazar
1212
*
1313
* @var string
1414
*/
15-
public const VERSION = '1.1.3';
15+
public const VERSION = '1.1.4';
1616

1717
/**
1818
* The currency in use.

src/Resources/TaxRateResource.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ public function fields(Request $request): array
4545
->sortable()
4646
->required(),
4747

48-
Number::make(__('Rate'), 'rate')
48+
Number::make(__('Rate'), 'value')
4949
->required()
5050
->rules(['required', 'numeric', 'min:0'])
51-
->step(0.1)
51+
->step(1)
5252
->min(0)
5353
->suffix('%')
5454
->format(static function (Request $request, Model $model): string {

0 commit comments

Comments
 (0)