promoted relation attributes now work correctly, refactoring of note autocomplete code

This commit is contained in:
azivner
2018-08-06 22:29:03 +02:00
parent c568ef2f8a
commit 90e9297ec5
6 changed files with 80 additions and 52 deletions

View File

@@ -46,7 +46,7 @@ function isElectron() {
function assertArguments() {
for (const i in arguments) {
if (!arguments[i]) {
throw new Error(`Argument idx#${i} should not be falsy: ${arguments[i]}`);
console.trace(`Argument idx#${i} should not be falsy: ${arguments[i]}`);
}
}
}