-
Notifications
You must be signed in to change notification settings - Fork 68
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Hello,
It seems like allowing multiple values on a "Content link" field does not react properly : if there's a pagination and we select multiple items from different pages, only the items selected on the current page will get linked.
As a workaround, I changed the params of the dialog so it will display every items in one page :
/modules/Content/assets/dialogs/select-content-item.js
data() {
return {
items: [],
loading: true,
fieldTypes: null,
sort: (this.model.meta && this.model.meta.sort) || {
_created: -1
},
fltr: '',
txtFilter: '',
selected: [],
page: 1,
pages: 1,
limit: 100, //was previsouly set to 10
count: 0,
}
},
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request