Skip to content

Commit a3ab0ce

Browse files
authored
Merge pull request #36866 from nextcloud/fix#35645
Convert tag id to number (closing #35645)
2 parents 599964d + dd89c4d commit a3ab0ce

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/workflowengine/src/components/Checks/FileSystemTag.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default {
5656
methods: {
5757
updateValue() {
5858
if (this.value !== '') {
59-
this.newValue = this.value
59+
this.newValue = parseInt(this.value)
6060
} else {
6161
this.newValue = null
6262
}

dist/workflowengine-workflowengine.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/workflowengine-workflowengine.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)