fix: added id on comment in activity
This commit is contained in:
parent
a9d51f8f8a
commit
8a5b5a6e0f
@ -97,6 +97,7 @@ def get_deal_activities(name):
|
|||||||
|
|
||||||
for comment in docinfo.comments:
|
for comment in docinfo.comments:
|
||||||
activity = {
|
activity = {
|
||||||
|
"name": comment.name,
|
||||||
"activity_type": "comment",
|
"activity_type": "comment",
|
||||||
"creation": comment.creation,
|
"creation": comment.creation,
|
||||||
"owner": comment.owner,
|
"owner": comment.owner,
|
||||||
@ -203,6 +204,7 @@ def get_lead_activities(name):
|
|||||||
|
|
||||||
for comment in docinfo.comments:
|
for comment in docinfo.comments:
|
||||||
activity = {
|
activity = {
|
||||||
|
"name": comment.name,
|
||||||
"activity_type": "comment",
|
"activity_type": "comment",
|
||||||
"creation": comment.creation,
|
"creation": comment.creation,
|
||||||
"owner": comment.owner,
|
"owner": comment.owner,
|
||||||
|
|||||||
@ -417,7 +417,11 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="mb-4" v-else-if="activity.activity_type == 'comment'">
|
<div
|
||||||
|
class="mb-4"
|
||||||
|
:id="activity.name"
|
||||||
|
v-else-if="activity.activity_type == 'comment'"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
class="mb-0.5 flex items-start justify-stretch gap-2 py-1.5 text-base"
|
class="mb-0.5 flex items-start justify-stretch gap-2 py-1.5 text-base"
|
||||||
>
|
>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user