diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-12-19 13:22:27 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-12-19 15:22:41 +0100 |
commit | 0cdcdb305e608ca46fa259a59237273faa05a993 (patch) | |
tree | 73bd9d8b50d9c859120df702100f05bf87b15043 /apps/workflowengine/src/workflowengine.js | |
parent | 15b64c6abb0f83eab4e87695952b1355f270c02f (diff) | |
download | nextcloud-server-0cdcdb305e608ca46fa259a59237273faa05a993.tar.gz nextcloud-server-0cdcdb305e608ca46fa259a59237273faa05a993.zip |
Set operation mode according to the mime type value
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/workflowengine/src/workflowengine.js')
-rw-r--r-- | apps/workflowengine/src/workflowengine.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/workflowengine/src/workflowengine.js b/apps/workflowengine/src/workflowengine.js index 712f98fdfd0..b212e6be844 100644 --- a/apps/workflowengine/src/workflowengine.js +++ b/apps/workflowengine/src/workflowengine.js @@ -33,9 +33,9 @@ import ShippedChecks from './components/Checks' * @property {string} class - The PHP class name of the check * @property {Comparison[]} operators - A list of possible comparison operations running on the check * @property {Vue} component - A vue component to handle the rendering of options - * The component should handle the v-model directive properly, - * so it needs a value property to receive data and emit an input - * event once the data has changed + * The component should handle the v-model directive properly, + * so it needs a value property to receive data and emit an input + * event once the data has changed * @property {callable} placeholder - Return a placeholder of no custom component is used * @property {callable} validate - validate a check if no custom component is used **/ @@ -48,9 +48,9 @@ import ShippedChecks from './components/Checks' * @property {string} operation - Default value for the operation field * @property {string} color - Custom color code to be applied for the operator selector * @property {Vue} component - A vue component to handle the rendering of options - * The component should handle the v-model directive properly, - * so it needs a value property to receive data and emit an input - * event once the data has changed + * The component should handle the v-model directive properly, + * so it needs a value property to receive data and emit an input + * event once the data has changed */ /** |