diff --git a/src/views/notify/recipient/modules/notify-recipient-detail-drawer.vue b/src/views/notify/recipient/modules/notify-recipient-detail-drawer.vue index 19f27f7..45ac9c8 100644 --- a/src/views/notify/recipient/modules/notify-recipient-detail-drawer.vue +++ b/src/views/notify/recipient/modules/notify-recipient-detail-drawer.vue @@ -26,7 +26,8 @@ watch( () => props.rowData, () => { console.log(props.rowData); - // notifyAttribute.value = JSON.parse(props?.rowData?.notifyAttribute!) || {}; + const rowData = props.rowData?.notifyAttribute; + notifyAttribute.value = JSON.parse(rowData!) || {}; }, { immediate: true } );