Skip to content

Commit

Permalink
ELEMENTS-782: Remove last deleted constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinleturc authored and guirenard committed Nov 13, 2018
1 parent 07a732d commit 933f42a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/nuxeo-page-provider.html
Expand Up @@ -94,7 +94,7 @@ <h3>[[item.title]]</h3>

<script>
const app = document.querySelector('dom-bind');
app.query = (docType) => `select * from ${docType} where ecm:currentLifeCycleState != 'deleted'`;
app.query = (docType) => `select * from ${docType} where ecm:isTrashed = 0`;
app.docType = 'File';
</script>
</body>
Expand Down

0 comments on commit 933f42a

Please sign in to comment.