Skip to content

Commit

Permalink
FOUR-19957 : Add Summary Tab in Case Section
Browse files Browse the repository at this point in the history
  • Loading branch information
hjonathan committed Nov 7, 2024
1 parent c8c563f commit c2b1ca6
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<template>
<div
v-if="request?.summary_screen"
v-if="summaryScreen"
class="tw-flex tw-w-full">
<vue-form-renderer
ref="screen"
v-model="dataSummary"
:config="request?.summary_screen?.config"
:custom-css="request?.summary_screen?.custom_css"
:computed="request?.summary_screen?.computed" />
:config="summaryScreen?.config"
:custom-css="summaryScreen?.custom_css"
:computed="summaryScreen?.computed" />
</div>
<DataSummary
Expand Down Expand Up @@ -36,4 +36,6 @@ const props = defineProps({
});
const dataSummary = computed(() => dateFormatSummary(props.request.summary));
const summaryScreen = computed(() => props.request?.summary_screen);
</script>

0 comments on commit c2b1ca6

Please sign in to comment.