Null pointer fix (#12473)
This commit is contained in:
parent
1cd885f39e
commit
3633b9e93e
|
@ -8,7 +8,7 @@
|
|||
x => x.value === users.getUserRole(row)
|
||||
)
|
||||
$: value = role?.label || "Not available"
|
||||
$: tooltip = role.subtitle || ""
|
||||
$: tooltip = role?.subtitle || ""
|
||||
</script>
|
||||
|
||||
<div on:click|stopPropagation title={tooltip}>
|
||||
|
|
Loading…
Reference in New Issue