Convert tag ids to number

Fix for #35645

Signed-off-by: GitHub <noreply@github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
This commit is contained in:
Robin Windey 2023-02-26 12:57:57 +00:00 committed by nextcloud-command
parent db09872ae1
commit 163b86b729
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