Skip to content

Commit

Permalink
fix(orb-ui): #625 fix order on dashboard page (#637)
Browse files Browse the repository at this point in the history
* fix(orb-ui): fix order of orb entities on dashboard page

* fix(orb-ui): fix wrong row ordering
  • Loading branch information
gpazuch authored Dec 17, 2021
1 parent 1d90c28 commit 3a6ca3b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions ui/src/app/pages/dashboard/dashboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@ <h6>{{ message }}</h6>
<nb-card-body [innerHTML]="agent">
</nb-card-body>
</nb-card>
<nb-card class="col-12 col-md-6">
<nb-card-body [innerHTML]="agent_groups">
<nb-card class="col-12 col-md-6 mr-md-4">
<nb-card-body [innerHTML]="policy">
</nb-card-body>
</nb-card>
</div>
<div class="d-flex flex-row justify-content-between">
<nb-card class="col-12 col-md-6 mr-md-4">
<nb-card-body [innerHTML]="policy">
<nb-card-body [innerHTML]="agent_groups">
</nb-card-body>
</nb-card>
<nb-card class="col-12 col-md-6">
<nb-card-body [innerHTML]="sink">
<nb-card class="col-12 col-md-6 mr-md-4">
<nb-card-body [innerHTML]="dataset">
</nb-card-body>
</nb-card>
</div>
<div class="d-flex flex-row justify-content-between">
<nb-card class="col-12 col-md-6 mr-md-4">
<nb-card-body [innerHTML]="dataset">
<nb-card class="col-12 col-md-6">
<nb-card-body [innerHTML]="sink">
</nb-card-body>
</nb-card>
</div>
Expand Down

0 comments on commit 3a6ca3b

Please sign in to comment.