c5a9972785
- item_card - item_card_container - detail_view - search_bar - reviews - skeleton_state - empty_state - empty_state
12 lines
379 B
JavaScript
12 lines
379 B
JavaScript
import SubPage from './subpage';
|
|
import { get_empty_state } from '../components/empty_state';
|
|
|
|
erpnext.hub.NotFound = class NotFound extends SubPage {
|
|
refresh() {
|
|
this.$wrapper.html(get_empty_state(
|
|
__('Sorry! I could not find what you were looking for.'),
|
|
`<button class="btn btn-default btn-xs" data-route="marketplace/home">${__('Back to home')}</button>`
|
|
));
|
|
}
|
|
}
|