fixed search end date invalid issue
This commit is contained in:
parent
776e8c8599
commit
5d0f76dfd1
|
|
@ -486,8 +486,8 @@ export default {
|
|||
let dates = this.selected_values[index].key.split('-to-');
|
||||
|
||||
date_range_path += sign + 'start_date=' + dates[0];
|
||||
date_range_path += '&end_date=' + dates[1];
|
||||
|
||||
date_range_path += '&end_date=' + (dates[1] ? dates[1] : dates[0]);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue