Skip to content

Commit 55e1c62

Browse files
authored
Merge pull request #14 from masterix21/patch-1
FIX missed comma
2 parents 28e5ca6 + 5a01852 commit 55e1c62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/quantity.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
minValue: {{ $getMinValue ?? 0 }},
5353
isDecrementAllowed: true,
5454
isIncrementAllowed: true,
55-
isDisabled: {{ $isDisabled ? 'true' : 'false' }}
55+
isDisabled: {{ $isDisabled ? 'true' : 'false' }},
5656
increment() {
5757
if(! this.isDisabled && this.state < this.maxValue && this.state >= this.minValue){
5858
this.state++

0 commit comments

Comments
 (0)