Fix rendering metadata in user requests
This commit is contained in:
parent
8d63ee689f
commit
465b6918e4
|
@ -57,8 +57,6 @@ const approve = async (isApproved: boolean) => {
|
||||||
const handleRemovedNote = (uuid: string) => {
|
const handleRemovedNote = (uuid: string) => {
|
||||||
obj.value.notes = obj.value.notes.filter((note) => note.uuid !== uuid)
|
obj.value.notes = obj.value.notes.filter((note) => note.uuid !== uuid)
|
||||||
}
|
}
|
||||||
|
|
||||||
const isArray = Array.isArray
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -224,7 +222,7 @@ const isArray = Array.isArray
|
||||||
:key="key"
|
:key="key"
|
||||||
>
|
>
|
||||||
<h4>{{ key }}</h4>
|
<h4>{{ key }}</h4>
|
||||||
<p v-if="isArray(value)">
|
<p v-if="value">
|
||||||
{{ value }}
|
{{ value }}
|
||||||
</p>
|
</p>
|
||||||
<translate
|
<translate
|
||||||
|
|
Loading…
Reference in New Issue