Skip to content

Commit f9ae1d3

Browse files
committed
Updated version info
1 parent c361a40 commit f9ae1d3

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
### Fixed
2121
### Removed --->
2222

23+
## 0.7.2 - 2021-10-20
24+
### Added
25+
- Added owner and label browsing filters
26+
### Changed
27+
- Use owner rather than assigned to field
28+
### Fixed
29+
- Issue with address and contact types migrations
30+
- Search leads and deals
31+
- Settings menu active main menu issue
32+
### Removed
33+
2334
## 0.7.1 - 2021-10-08
2435
### Added
2536
- Name field on address

config/package.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
|
1414
*/
1515

16-
'version' => '0.7.1',
16+
'version' => '0.7.2',
1717

1818
];

resources/views/deals/partials/card-show.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
])</p>
4545
<p><span class="fa fa-dollar" aria-hidden="true"></span> {{ money($deal->amount, $deal->currency) }}</p>
4646
<p><span class="fa fa-info" aria-hidden="true"></span> {{ $deal->description }}</p>
47-
<p><span class="fa fa-user-circle" aria-hidden="true"></span> {{ $deal->assignedToUser->name }}</p>
47+
<p><span class="fa fa-user-circle" aria-hidden="true"></span> {{ $deal->ownerUser->name ?? null }}</p>
4848
<h6 class="mt-4 text-uppercase">{{ ucfirst(__('laravel-crm::lang.contact_person')) }}</h6>
4949
<hr />
5050
<p><span class="fa fa-user" aria-hidden="true"></span> {{ $deal->person->name ?? null }} </p>

resources/views/leads/partials/card-show.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
])</p>
4040
<p><span class="fa fa-dollar" aria-hidden="true"></span> {{ money($lead->amount, $lead->currency) }}</p>
4141
<p><span class="fa fa-info" aria-hidden="true"></span> {{ $lead->description }}</p>
42-
<p><span class="fa fa-user-circle" aria-hidden="true"></span> {{ $lead->assignedToUser->name }}</p>
42+
<p><span class="fa fa-user-circle" aria-hidden="true"></span> {{ $lead->ownerUser->name ?? null }}</p>
4343
<h6 class="mt-4 text-uppercase"> {{ ucfirst(__('laravel-crm::lang.person')) }}</h6>
4444
<hr />
4545
<p><span class="fa fa-user" aria-hidden="true"></span> {{ $lead->person->name ?? null}} </p>

0 commit comments

Comments
 (0)