mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-3930] Can't load more results in Copy/Move dialog (#4247)
* fix unrelated failing test improve type definition add set get filtering node selector fix directive highlight fix minor problem style breadcrumb small refactoring problem documentlist * fix lint style * fix html node * fix test
This commit is contained in:
@@ -15,7 +15,9 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
export const fakeNodeWithCreatePermission = {
|
||||
import { Node } from '@alfresco/js-api';
|
||||
|
||||
export const fakeNodeWithCreatePermission = new Node({
|
||||
isFile: false,
|
||||
createdByUser: { id: 'admin', displayName: 'Administrator' },
|
||||
modifiedAt: '2017-06-08T13:53:46.495Z',
|
||||
@@ -36,9 +38,9 @@ export const fakeNodeWithCreatePermission = {
|
||||
id: '70e1cc6a-6918-468a-b84a-1048093b06fd',
|
||||
properties: {},
|
||||
allowableOperations: ['delete', 'update', 'create']
|
||||
};
|
||||
});
|
||||
|
||||
export const fakeNodeWithNoPermission = {
|
||||
export const fakeNodeWithNoPermission = new Node({
|
||||
isFile: false,
|
||||
createdByUser: { id: 'admin', displayName: 'Administrator' },
|
||||
modifiedAt: '2017-06-08T13:53:46.495Z',
|
||||
@@ -59,7 +61,7 @@ export const fakeNodeWithNoPermission = {
|
||||
name: 'Test',
|
||||
id: '70e1cc6a-6918-468a-b84a-1048093b06fd',
|
||||
properties: {}
|
||||
};
|
||||
});
|
||||
|
||||
export const fakeNodeAnswerWithEntries = {
|
||||
'list': {
|
||||
|
Reference in New Issue
Block a user