diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2019-12-19 14:58:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-19 14:58:24 +0100 |
commit | aa46fc26a46cc6b375ba732bcf3e0dc04a08a2f7 (patch) | |
tree | 12ad857932bd82db182531cf17b9dcbfdd4400a2 /apps/workflowengine/src/components/Checks/RequestURL.vue | |
parent | 5a986f02a33bd1f54fd951af7dc5a1fed02b8340 (diff) | |
parent | ec01e0a790448fff38364f629a4de4edb5d465bf (diff) | |
download | nextcloud-server-aa46fc26a46cc6b375ba732bcf3e0dc04a08a2f7.tar.gz nextcloud-server-aa46fc26a46cc6b375ba732bcf3e0dc04a08a2f7.zip |
Merge pull request #17705 from nextcloud/dependabot/npm_and_yarn/eslint-config-nextcloud-0.1.0
Bump eslint-config-nextcloud from 0.0.6 to 0.1.0
Diffstat (limited to 'apps/workflowengine/src/components/Checks/RequestURL.vue')
-rw-r--r-- | apps/workflowengine/src/components/Checks/RequestURL.vue | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/apps/workflowengine/src/components/Checks/RequestURL.vue b/apps/workflowengine/src/components/Checks/RequestURL.vue index f63f7d29114..8685b051ff6 100644 --- a/apps/workflowengine/src/components/Checks/RequestURL.vue +++ b/apps/workflowengine/src/components/Checks/RequestURL.vue @@ -57,10 +57,10 @@ import valueMixin from '../../mixins/valueMixin' export default { name: 'RequestURL', components: { - Multiselect + Multiselect, }, mixins: [ - valueMixin + valueMixin, ], data() { return { @@ -69,10 +69,10 @@ export default { { label: t('workflowengine', 'Predefined URLs'), children: [ - { pattern: 'webdav', label: t('workflowengine', 'Files WebDAV') } - ] - } - ] + { pattern: 'webdav', label: t('workflowengine', 'Files WebDAV') }, + ], + }, + ], } }, computed: { @@ -101,9 +101,9 @@ export default { { icon: 'icon-settings-dark', label: t('workflowengine', 'Custom URL'), - pattern: '' - } - ] + pattern: '', + }, + ], } }, currentValue() { @@ -113,14 +113,14 @@ export default { return { icon: 'icon-settings-dark', label: t('workflowengine', 'Custom URL'), - pattern: this.newValue + pattern: this.newValue, } - } + }, }, methods: { validateRegex(string) { - var regexRegex = /^\/(.*)\/([gui]{0,3})$/ - var result = regexRegex.exec(string) + const regexRegex = /^\/(.*)\/([gui]{0,3})$/ + const result = regexRegex.exec(string) return result !== null }, setValue(value) { @@ -133,8 +133,8 @@ export default { updateCustom(event) { this.newValue = event.target.value this.$emit('input', this.newValue) - } - } + }, + }, } </script> <style scoped> |