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

Commit 05cdda1

Browse files
authored
Merge pull request #13 from justcoded/develop
Bootstrap4 support bug fix on Permission update screen
2 parents 3449c74 + e84ebbf commit 05cdda1

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
CHANGELOG
22
=====================
33

4+
v1.2.1
5+
---------------------
6+
* Bootstrap4 support bug fix on Permission update screen.
7+
48
v1.2
59
---------------------
610
* NEW: Bootstrap4 Themes support.

src/views/permissions/_relations-box.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
'action' => ['add-relation', 'name' => $model->name],
2020
]); ?>
2121

22-
<div class="panel box">
23-
<div class="panel-header box-header with-border">
24-
<h3 class="box-title"><?= $title ?></h3>
22+
<div class="panel box card">
23+
<div class="panel-header box-header with-border card-header">
24+
<h3 class="box-title card-title"><?= $title ?></h3>
2525
</div>
26-
<div class="panel-body box-body">
26+
<div class="panel-body box-body card-body">
2727
<?php if ($selected) : ?>
2828
<p><?= $introMsg ?></p>
2929
<table class="table table-striped">
@@ -35,7 +35,7 @@
3535
</td>
3636
<td><small><?= Html::encode($item->description); ?></small></td>
3737
<td>
38-
<?php //we can't remove if this item is inherit from some other item ?>
38+
<?php // we can't remove if this item is inherit from some other item. ?>
3939
<?php if (!isset($item->data['_inherit']) || ! $item->data['_inherit']) : ?>
4040
<?= Html::a(
4141
'&times;',

0 commit comments

Comments
 (0)