Skip to content

Commit

Permalink
fix: lost title
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleostro committed May 12, 2024
1 parent 08dea05 commit ea983aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/ProductFilters/view/ProductFiltersView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ class ProductFiltersView {

const from = this.createPriceLabel(FILTER_INPUT_RANGE_LABEL[getStore().getState().currentLanguage].FROM);
const to = this.createPriceLabel(FILTER_INPUT_RANGE_LABEL[getStore().getState().currentLanguage].TO);
priceWrapper.append(from.priceLabel, this.priceSlider.target, to.priceLabel);
priceWrapper.append(title, from.priceLabel, this.priceSlider.target, to.priceLabel);

observeStore(selectCurrentLanguage, () => {
from.priceSpan.textContent = FILTER_INPUT_RANGE_LABEL[getStore().getState().currentLanguage].FROM;
Expand Down

0 comments on commit ea983aa

Please sign in to comment.