Merge pull request #36887 from nextcloud/backport/36866/stable25

[stable25] Convert tag id to number (closing #35645)
This commit is contained in:
Robin Windey 2023-02-28 11:26:03 +01:00 committed by GitHub
commit a85639f1cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -56,7 +56,7 @@ export default {
methods: {
updateValue() {
if (this.value !== '') {
this.newValue = this.value
this.newValue = parseInt(this.value)
} else {
this.newValue = null
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long