diff --git a/package-lock.json b/package-lock.json index 339668e0f..72ac9508b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -74,7 +74,7 @@ "jsdoc": "3.6.6", "lorem-ipsum": "2.0.3", "rcedit": "3.0.0", - "webpack": "5.31.0", + "webpack": "5.31.2", "webpack-cli": "4.6.0" }, "optionalDependencies": { @@ -9576,9 +9576,9 @@ } }, "node_modules/webpack": { - "version": "5.31.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.31.0.tgz", - "integrity": "sha512-3fUfZT/FUuThWSSyL32Fsh7weUUfYP/Fjc/cGSbla5KiSo0GtI1JMssCRUopJTvmLjrw05R2q7rlLtiKdSzkzQ==", + "version": "5.31.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.31.2.tgz", + "integrity": "sha512-0bCQe4ybo7T5Z0SC5axnIAH+1WuIdV4FwLYkaAlLtvfBhIx8bPS48WHTfiRZS1VM+pSiYt7e/rgLs3gLrH82lQ==", "dev": true, "dependencies": { "@types/eslint-scope": "^3.7.0", @@ -18083,9 +18083,9 @@ "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" }, "webpack": { - "version": "5.31.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.31.0.tgz", - "integrity": "sha512-3fUfZT/FUuThWSSyL32Fsh7weUUfYP/Fjc/cGSbla5KiSo0GtI1JMssCRUopJTvmLjrw05R2q7rlLtiKdSzkzQ==", + "version": "5.31.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.31.2.tgz", + "integrity": "sha512-0bCQe4ybo7T5Z0SC5axnIAH+1WuIdV4FwLYkaAlLtvfBhIx8bPS48WHTfiRZS1VM+pSiYt7e/rgLs3gLrH82lQ==", "dev": true, "requires": { "@types/eslint-scope": "^3.7.0", diff --git a/package.json b/package.json index d552847c5..0a6a219ef 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "jsdoc": "3.6.6", "lorem-ipsum": "2.0.3", "rcedit": "3.0.0", - "webpack": "5.31.0", + "webpack": "5.31.2", "webpack-cli": "4.6.0" }, "optionalDependencies": { diff --git a/src/public/app/widgets/attribute_widgets/attribute_detail.js b/src/public/app/widgets/attribute_widgets/attribute_detail.js index 3702fcec9..5a88809db 100644 --- a/src/public/app/widgets/attribute_widgets/attribute_detail.js +++ b/src/public/app/widgets/attribute_widgets/attribute_detail.js @@ -182,11 +182,11 @@ const ATTR_HELP = { `, "runOnInstance": "Define which trilium instance should run this on. Default to all instances.", - "runAtHour": "On which hour should this run. Should be used together with #run=hourly", + "runAtHour": "On which hour should this run. Should be used together with #run=hourly. Can be defined multiple times for more runs during the day.", "disableInclusion": "scripts with this label won't be included into parent script execution.", "sorted": "keeps child notes sorted by title alphabetically", "hidePromotedAttributes": "Hide promoted attributes on this note", diff --git a/src/services/attributes.js b/src/services/attributes.js index 784bc1c60..144a539f6 100644 --- a/src/services/attributes.js +++ b/src/services/attributes.js @@ -26,7 +26,7 @@ const BUILTIN_ATTRIBUTES = [ { type: 'label', name: 'keyboardShortcut' }, { type: 'label', name: 'run', isDangerous: true }, { type: 'label', name: 'runOnInstance', isDangerous: false }, - { type: 'label', name: 'runAtHours', isDangerous: false }, + { type: 'label', name: 'runAtHour', isDangerous: false }, { type: 'label', name: 'customRequestHandler', isDangerous: true }, { type: 'label', name: 'customResourceProvider', isDangerous: true }, { type: 'label', name: 'widget', isDangerous: true },