Skip to content

Commit

Permalink
Issue krayin#720 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
jitendra-webkul committed Nov 19, 2021
1 parent a3340c0 commit 1a592e0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ class="control"

<input name="location" class="control" value="{{ old('location') ?: $activity->location }}"/>
</div>

<div class="form-group video-conference">
</div>

<div class="form-group">
<label for="comment">{{ __('admin::app.activities.description') }}</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,9 @@ class="control"
<input name="location" class="control"/>
</div>

<div class="form-group video-conference">
</div>

<div class="form-group">
<label for="comment">{{ __('admin::app.leads.description') }}</label>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@
</a>
</div>

<div class="comment" v-if="activity.comment">
@{{ activity.comment }}
<div class="comment" v-if="activity.comment" v-html="activity.comment">
</div>

<div class="info">
Expand Down
6 changes: 6 additions & 0 deletions packages/Webkul/Workflow/src/Helpers/Entity/Activity.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,12 @@ public function getAttributes($entityType, $skipAttributes = [])
'name' => 'File',
],
]),
], [
'id' => 'location',
'type' => 'text',
'name' => 'Location',
'lookup_type' => null,
'options' => collect([]),
], [
'id' => 'comment',
'type' => 'textarea',
Expand Down

0 comments on commit 1a592e0

Please sign in to comment.