File tree Expand file tree Collapse file tree 1 file changed +17
-13
lines changed
Expand file tree Collapse file tree 1 file changed +17
-13
lines changed Original file line number Diff line number Diff line change 5858 increment() {
5959 if(! this.isDisabled && this.state < this.maxValue && this.state >= this.minValue){
6060 this.state = parseInt(this.state) + this.steps
61- $wire.$refresh()
61+
62+ setTimeout(() => {
63+ $wire.$refresh();
64+ }, 1000);
65+
6266 if(this.state == this.maxValue){
6367 this.isIncrementAllowed = false
6468 } else {
8286 }"
8387 >
8488 <x-filament::input .wrapper
85- :disabled =" $isDisabled"
86- :inline-prefix =" $isPrefixInline"
87- :inline-suffix =" $isSuffixInline"
88- :prefix =" $prefixLabel"
89- :prefix-actions =" $prefixActions"
90- :prefix-icon =" $prefixIcon"
91- :prefix-icon-color =" $getPrefixIconColor()"
92- :suffix =" $suffixLabel"
93- :suffix-actions =" $suffixActions"
94- :suffix-icon =" $suffixIcon"
95- :suffix-icon-color =" $getSuffixIconColor()"
96- :valid =" ! $errors->has($getStatePath)"
89+ :disabled =" $isDisabled"
90+ :inline-prefix =" $isPrefixInline"
91+ :inline-suffix =" $isSuffixInline"
92+ :prefix =" $prefixLabel"
93+ :prefix-actions =" $prefixActions"
94+ :prefix-icon =" $prefixIcon"
95+ :prefix-icon-color =" $getPrefixIconColor()"
96+ :suffix =" $suffixLabel"
97+ :suffix-actions =" $suffixActions"
98+ :suffix-icon =" $suffixIcon"
99+ :suffix-icon-color =" $getSuffixIconColor()"
100+ :valid =" ! $errors->has($getStatePath)"
97101 >
98102 <div class =" w-full flex justify-between items-center gap-x-5" >
99103 <div class =" grow" >
You can’t perform that action at this time.
0 commit comments