|
@@ -301,7 +301,7 @@ export class FilterHistoryAjaxModel2ViewModel {
|
|
priceText = `${start}${unit}以上`
|
|
priceText = `${start}${unit}以上`
|
|
}
|
|
}
|
|
else if (!start && end) {
|
|
else if (!start && end) {
|
|
- price = end
|
|
|
|
|
|
+ price = end.includes('-') ? end : '-' + end
|
|
priceText = `${end}${unit}以下`
|
|
priceText = `${end}${unit}以下`
|
|
}
|
|
}
|
|
return {
|
|
return {
|