floating price on item list
This commit is contained in:
@@ -90,8 +90,8 @@ var ByCategory = React.createClass({
|
||||
locationName="category"
|
||||
locationId={Number(this.getParams().id)} />
|
||||
|
||||
<h3> Kategorija - {this.state.category.get('name')}</h3>
|
||||
Number of items in this category: {this.state.items.length}
|
||||
<h3> {this.state.category.get('name')}</h3>
|
||||
|
||||
<div>
|
||||
<AppliedFiltersList
|
||||
filters={this.appliedCategoryFiltersArray()}
|
||||
@@ -99,8 +99,6 @@ var ByCategory = React.createClass({
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div> total count is : {this.state.items.totalCount}</div>
|
||||
<ItemList
|
||||
items={this.state.items}
|
||||
paginationEnabled={true}
|
||||
|
||||
@@ -30,17 +30,14 @@ var BySubCategory = React.createClass({
|
||||
|
||||
return (<div>
|
||||
<div className='col-md-2'>
|
||||
|
||||
<FilterCriteriaSelector filterCriterias={this.state.subCategory.get('filter_criterias')} onFCClick={this.onFCClick} />
|
||||
<FilterCriteriaSelector filterCriterias={this.state.subCategory.get('filter_criterias')} onFCClick={this.onFCClick} />
|
||||
</div>
|
||||
<div classname='col-md-10'>
|
||||
|
||||
<h2>
|
||||
Podkategorija {this.state.subCategory.get('name')}
|
||||
{this.state.subCategory.get('name')}
|
||||
</h2>
|
||||
|
||||
<div>Number of items in this subcategory: {this.state.items.length}</div>
|
||||
<div>total count : {this.state.items.totalCount}</div>
|
||||
|
||||
<div>
|
||||
<AppliedFiltersList filters={this.appliedSubCategoryFiltersArray()} onRemove={this.removeAppliedFilter} />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user