Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
only show type if its a module
  • Loading branch information
Philippe Damen committed Jun 18, 2019
1 parent b0f2ca9 commit e42ee31
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
All Notable changes to the `chief` application template will be documented in this file. Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## unreleased

## 0.2.14 - 2019-6-18
- Added: add seo_image to page seo tab
- Fixed: remove own module on page now works.
- Fixed: apply permissions on archive/publish buttons
Expand Down
5 changes: 4 additions & 1 deletion resources/views/back/managers/_partials/_rowitem.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<div class="s-column-6 m-column-4 inset-xs">
<div class="row bg-white inset-s panel panel-default" style="height:100%">
<div class="column">
<div>{{$manager->details()->singular}}</div>
@if($manager->model() instanceof Thinktomorrow\Chief\Modules\Module)
<div>{{$manager->details()->singular}}</div>
@endif

@if($manager->can('edit'))
<a class="text-black bold" href="{{ $manager->route('edit') }}">
{!! $manager->details()->title !!}
Expand Down

0 comments on commit e42ee31

Please sign in to comment.