mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
Sync with latest development (#139)
* Update index.html * Update features.md * Update header.md * Update header.md * Update header.md * Add files via upload * Update header.md * Update header.md * Add files via upload * Update header.md * Add files via upload * Add files via upload * Update header.md * Add files via upload * Delete sid-nav.png * Add files via upload * Update side-nav.md * Add files via upload * Update side-nav.md * Update side-nav.md * Update doc-list.md * Add files via upload * Update doc-list.md * Update doc-list.md * Delete doclist.png * Add files via upload * small changes to docs * [ACA-1038] 'Load more' doesn't work correctly on destination picker (#135) made sure that a search is performed only if there is a search string to search for * [ACA-951] Color theme and logo (#138) - documented customization of the logo and header background color
This commit is contained in:
@@ -212,6 +212,16 @@ export class NodeActionsService {
|
||||
}
|
||||
};
|
||||
|
||||
const initialGetNextPageOfSearch = destinationPicker.getNextPageOfSearch;
|
||||
destinationPicker.getNextPageOfSearch = (event) => {
|
||||
destinationPicker.infiniteScroll = true;
|
||||
destinationPicker.skipCount = event.skipCount;
|
||||
|
||||
if (destinationPicker.searchTerm.length > 0) {
|
||||
initialGetNextPageOfSearch.call(destinationPicker, event);
|
||||
}
|
||||
};
|
||||
|
||||
return data.select;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user