fixed search end date invalid issue

This commit is contained in:
Cihan Şentürk 2025-03-27 20:36:13 +03:00 committed by GitHub
parent 776e8c8599
commit 5d0f76dfd1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}