mirror of https://github.com/statping/statping
fixed issue in date range
parent
cc92b03dec
commit
97767e8bb8
|
@ -102,7 +102,7 @@
|
||||||
role="group"
|
role="group"
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
type="submit"
|
type="button"
|
||||||
class="btn btn-primary mr-1"
|
class="btn btn-primary mr-1"
|
||||||
@click.prevent="handleFilterSearch"
|
@click.prevent="handleFilterSearch"
|
||||||
>
|
>
|
||||||
|
@ -168,7 +168,7 @@ export default {
|
||||||
computed: {
|
computed: {
|
||||||
...mapState([ 'services' ]),
|
...mapState([ 'services' ]),
|
||||||
endConfig: function (){
|
endConfig: function (){
|
||||||
return { ...(this.params.start && { minDate: this.params.start }) };
|
return { minDate: this.params.start ? this.params.start : null };
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue