Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Commit

Permalink
Merge pull request #13 from justcoded/develop
Browse files Browse the repository at this point in the history
Bootstrap4 support bug fix on Permission update screen
  • Loading branch information
aprokopenko authored Aug 28, 2019
2 parents 3449c74 + e84ebbf commit 05cdda1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG
=====================

v1.2.1
---------------------
* Bootstrap4 support bug fix on Permission update screen.

v1.2
---------------------
* NEW: Bootstrap4 Themes support.
Expand Down
10 changes: 5 additions & 5 deletions src/views/permissions/_relations-box.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
'action' => ['add-relation', 'name' => $model->name],
]); ?>

<div class="panel box">
<div class="panel-header box-header with-border">
<h3 class="box-title"><?= $title ?></h3>
<div class="panel box card">
<div class="panel-header box-header with-border card-header">
<h3 class="box-title card-title"><?= $title ?></h3>
</div>
<div class="panel-body box-body">
<div class="panel-body box-body card-body">
<?php if ($selected) : ?>
<p><?= $introMsg ?></p>
<table class="table table-striped">
Expand All @@ -35,7 +35,7 @@
</td>
<td><small><?= Html::encode($item->description); ?></small></td>
<td>
<?php //we can't remove if this item is inherit from some other item ?>
<?php // we can't remove if this item is inherit from some other item. ?>
<?php if (!isset($item->data['_inherit']) || ! $item->data['_inherit']) : ?>
<?= Html::a(
'&times;',
Expand Down

0 comments on commit 05cdda1

Please sign in to comment.