fix: Empty states and miscellanous fixes

- Added Wishlist and Product Listing empty states
- Hide ‘Write Review’ button f user is not Customer
- Fixed grid view title (missing arg)
- Render empty state if no items form server side
- Removed unused function
- Guest user redirected to login on clicking Wishlist button
- Fixed ‘Notes’ field clearing issue
This commit is contained in:
marination
2021-05-19 21:17:47 +05:30
parent 681ada9aaf
commit 2bc68f3f28
9 changed files with 117 additions and 71 deletions

View File

@@ -60,7 +60,7 @@ erpnext.ProductGrid = class {
<div class="card-body text-left" style="width:100%">
<div style="margin-top: 16px; display: flex;">
`;
body_html += this.get_title_with_indicator(item, title);
body_html += this.get_title_with_indicator(item, title, settings);
if (!item.has_variants && settings.enable_wishlist) {
body_html += this.get_wishlist_icon(item);