-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -200,7 +200,10 @@ | |
$permissions = $item->permissions(); | ||
$blueprint = $item->blueprint(); | ||
$image = $item->panelImage($this->image ?? []); | ||
$url = $item->panel()->url(true); | ||
$url = false; | ||
if($this->url == 'panel') { | ||
$url = $item->panel()->url(true); | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
sylvainjule
Author
Owner
|
||
} | ||
if($this->url == 'preview') { | ||
$url = $item->url(); | ||
} | ||
|
@sylvainjule Thanks for enhancement 👏 But this line should be like following to override from custom models.