fixed search end date invalid issue

This commit is contained in:
Cihan Şentürk 2025-03-27 18:26:45 +03:00 committed by GitHub
parent de4a32ec00
commit 543d180060
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -486,7 +486,7 @@ 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;
}