Convert tag id to number (closing #35645)
pull/36890/head
Robin Windey 2023-02-28 09:03:24 +07:00 committed by GitHub
commit a3ab0ce5d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

@ -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