Fix invalid short uuid conversion
Avoid "TypeError: Expected a string but received a null" error
This commit is contained in:
parent
3ffff82e87
commit
69e3f2049f
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ function toCompleteUUID (value: string) {
|
|||
try {
|
||||
return shortToUUID(value)
|
||||
} catch {
|
||||
return null
|
||||
return ''
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue