forked from angular/batarang
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(panel/hints): resolve layout issue with multiple categories
- Loading branch information
Showing
1 changed file
with
19 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
<div class="sidebar-pane-stack audit-result-view fill visible" ng-controller="HintController"> | ||
|
||
<div></div> | ||
|
||
<div class="sidebar-pane-title expanded" | ||
ng-repeat="(groupName, group) in groupedHints">{{groupName}} | ||
ng-repeat-start="(groupName, group) in groupedHints">{{groupName}} | ||
<div class="sidebar-pane-toolbar"></div> | ||
</div> | ||
|
||
<div class="sidebar-pane visible" ng-repeat="(summary, hints) in group"> | ||
<div class="body audit-result-tree"> | ||
<ol> | ||
<li class="parent audit-result"> | ||
<div class="severity-warning"></div>{{summary}} ({{hints.length}}) | ||
</li> | ||
<li class="parent-expanded expanded selected"> | ||
Controller names should start with an uppercase character and end with the suffix <code>Controller</code>. For example: <code>UserController</code>. | ||
</li> | ||
<ol class="children expanded"> | ||
<li class="selected" ng-repeat="hint in hints" bat-code="hint.message"></li> | ||
</ol> | ||
<div class="sidebar-pane visible" | ||
ng-repeat-end | ||
ng-repeat="(summary, hints) in group"> | ||
<div class="body audit-result-tree"> | ||
<ol> | ||
<li class="parent audit-result"> | ||
<div class="severity-warning"></div>{{summary}} ({{hints.length}}) | ||
</li> | ||
<li class="parent-expanded expanded selected"> | ||
Controller names should start with an uppercase character and end with the suffix <code>Controller</code>. For example: <code>UserController</code>. | ||
</li> | ||
<ol class="children expanded"> | ||
<li class="selected" ng-repeat="hint in hints" bat-code="hint.message"></li> | ||
</ol> | ||
</div> | ||
</ol> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> |