Skip to content

Commit

Permalink
release 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kikkomep committed May 29, 2023
2 parents 86a3347 + a67baf7 commit f312947
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lifemonitor",
"version": "0.5.0",
"version": "0.5.1",
"scripts": {
"start": "ng build --configuration production && http-server -p 4202 --ssl -C ./certs/lm.crt -K ./certs/lm.key --host lm dist/lifemonitor",
"start:dev": "ng serve --port 4200 --ssl --ssl-key ./certs/lm.key --ssl-cert ./certs/lm.crt --host lm",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<div style="widthx: 100%">
<div style="width: 120px">
<div *ngIf="!stats" style="display: flex; align-items: center; width: 150px;">
<div class="text-center w-100">
<i class="fas fa-2x fa-sync-alt text-muted"></i>
</div>
</div>
<div *ngIf="stats" class="text-sm text-center">
<p-chart type="pie" [data]="pieChartData" [options]="pieChartOptions" [width]="120"></p-chart>
<p-chart type="pie" [data]="pieChartData" [options]="pieChartOptions"></p-chart>
</div>
</div>
3 changes: 1 addition & 2 deletions src/app/views/dashboard/dashboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -620,8 +620,7 @@ <h3>{{ workflows ? getStatsLength(workflowStats.unknown) : 0 }}</h3>
</div>

<!-- Workflow Builds -->
<div class="d-none workflow-list-item-builds-chart-container"
classx="col-3 col-xl-2 d-none d-md-block">
<div class="d-none workflow-list-item-builds-chart-container">
<div class="workflow-list-item-builds-chart">
<div *ngIf="!isLoadingWorkflowVersion(item) && item.suites && item.suites.all.length == 0"
tooltipPosition="top" data-html="true"
Expand Down
2 changes: 1 addition & 1 deletion src/app/views/dashboard/dashboard.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@
height: auto !important;
}

.workflow-grid-item-bottom  {
.workflow-grid-item-bottom {
margin-top: 50px !important;
}
}
Expand Down

0 comments on commit f312947

Please sign in to comment.