Skip to content

Commit

Permalink
Merge pull request #1918 from amit-webkul/activity-datagrid-ui
Browse files Browse the repository at this point in the history
🛠️ [v2.0] : Fixed Issue #1917
  • Loading branch information
devansh-webkul authored Jan 10, 2025
2 parents 324fcec + 91b9bd3 commit f6478e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ class="text-gray-600 dark:text-gray-300"
<div class="flex gap-1.5">
<div class="flex flex-col gap-1.5">
<p class="text-gray-600 dark:text-gray-300">
@{{ record.comment }}
{{-- @{{ record.comment }} --}}
@{{ record.comment.length > 180 ? record.comment.slice(0, 180) + '...' : record.comment }}
</p>
<p v-html="record.lead_title"></p>
Expand All @@ -232,7 +233,7 @@ class="text-gray-600 dark:text-gray-300"
</div>
</div>
<div class="flex items-center justify-between gap-x-4">
<div class="flex items-start justify-between gap-x-4">
<div class="flex flex-col gap-1.5">
<p class="text-gray-600 dark:text-gray-300">
@{{ record.schedule_from ?? 'N/A' }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class="flex flex-col gap-4"
]"
/>
<!-- Lead Details Oter input fields -->
<!-- Lead Details Other input fields -->
<div class="flex gap-4 max-sm:flex-wrap">
<div class="w-full">
<x-admin::attributes
Expand Down

0 comments on commit f6478e4

Please sign in to comment.