1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-19 22:18:03 +00:00

Context menu + database dropping

This commit is contained in:
2023-01-14 20:38:39 +01:00
parent 5a558577ea
commit b7365b739c
10 changed files with 182 additions and 19 deletions

View File

@ -13,17 +13,10 @@
sort: '{ "_id": 1 }',
fields: '{}',
skip: 0,
limit: 30,
};
let form = {
query: '{}',
sort: '{ "_id": 1 }',
fields: '{}',
skip: 0,
limit: 30,
limit: 15,
};
let form = { ...defaults };
let result = {};
let submittedForm = {};
let queryField;

View File

@ -24,7 +24,6 @@
async function catchQuery(event) {
tab = 'find';
await tick();
console.log(event, find);
find.performQuery(event.detail);
}
</script>