Skip to content

Commit

Permalink
Merge pull request #7687 from ProcessMaker/bugfix/FOUR-19272-S
Browse files Browse the repository at this point in the history
FOUR-19272 : CSS style is not rendering in Summary section
  • Loading branch information
ryancooley authored Nov 5, 2024
2 parents aa39efd + 7eda5ad commit 1686c17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/requests/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,15 @@
<template v-if="showScreenSummary">
<div class="p-3">
<vue-form-renderer ref="screen" :config="screenSummary.config" v-model="dataSummary"
:custom-css="screenSummary.custom_css"
:custom-css="screenSummary?.custom_css"
:computed="screenSummary.computed" />
</div>
</template>
<template v-if="showScreenRequestDetail && !showScreenSummary">
<div class="card">
<div class="card-body">
<vue-form-renderer ref="screenRequestDetail" :config="screenRequestDetail"
:custom-css="screenSummary.custom_css"
:custom-css="screenSummary?.custom_css"
v-model="dataSummary" />
</div>
</div>
Expand Down

0 comments on commit 1686c17

Please sign in to comment.