fic: added after inset audit record data

This commit is contained in:
Ramesh Mane
2024-07-05 08:35:42 +00:00
parent 2fc3aa976b
commit a05ce47cdc
2 changed files with 36 additions and 10 deletions

View File

@@ -476,7 +476,7 @@ useEventListener(tableWrapper, 'scroll', () => {
</div>
</div>
</template>
<div v-if="selectedAudit" class="flex flex-col gap-4">
<div v-if="selectedAudit" class="nc-expanded-audit flex flex-col gap-4">
<div class="bg-gray-50 rounded-lg border-1 border-gray-200">
<div class="flex">
<div class="w-1/2 border-r border-gray-200 flex flex-col gap-2 px-4 py-3">
@@ -548,7 +548,9 @@ useEventListener(tableWrapper, 'scroll', () => {
</div>
<div class="flex flex-col gap-2">
<div class="cell-header">{{ $t('labels.description') }}</div>
<div class="text-small leading-[18px] text-gray-600">{{ selectedAudit?.description }}</div>
<div>
<pre class="!text-small !leading-[18px] !text-gray-600 mb-0">{{ selectedAudit?.description }}</pre>
</div>
</div>
</div>
</NcModal>
@@ -557,13 +559,9 @@ useEventListener(tableWrapper, 'scroll', () => {
</template>
<style lang="scss" scoped>
.nc-audit-table pre {
display: table;
table-layout: fixed;
width: 100%;
white-space: break-spaces;
font-size: unset;
font-family: unset;
.nc-expanded-audit pre {
font-family: Manrope, 'Inter', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
sans-serif;
}
:deep(.nc-menu-item-inner) {