aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRobin Windey <ro.windey@gmail.com>2023-02-28 09:03:24 +0100
committerGitHub <noreply@github.com>2023-02-28 09:03:24 +0100
commita3ab0ce5d5ecb272d959b5c060f8ef066c24ced9 (patch)
tree5d0b68b9da7d1de5188141244e62352953c1a9b7 /apps
parent599964d01b427092b0aff96a06190cd59aecfad7 (diff)
parentdd89c4d41d43b65090e74d0b18fb410879424eee (diff)
downloadnextcloud-server-a3ab0ce5d5ecb272d959b5c060f8ef066c24ced9.tar.gz
nextcloud-server-a3ab0ce5d5ecb272d959b5c060f8ef066c24ced9.zip
Merge pull request #36866 from nextcloud/fix#35645
Convert tag id to number (closing #35645)
Diffstat (limited to 'apps')
-rw-r--r--apps/workflowengine/src/components/Checks/FileSystemTag.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workflowengine/src/components/Checks/FileSystemTag.vue b/apps/workflowengine/src/components/Checks/FileSystemTag.vue
index d7db3e8b1ac..2d59c8f36d4 100644
--- a/apps/workflowengine/src/components/Checks/FileSystemTag.vue
+++ b/apps/workflowengine/src/components/Checks/FileSystemTag.vue
@@ -56,7 +56,7 @@ export default {
methods: {
updateValue() {
if (this.value !== '') {
- this.newValue = this.value
+ this.newValue = parseInt(this.value)
} else {
this.newValue = null
}