feat: 健康检查增加环境变量输出
This commit is contained in:
parent
5911328cc7
commit
69f31a3ba4
|
@ -13,11 +13,16 @@
|
|||
@@media (min-width: 768px) {
|
||||
.card-body .bootstrap-table tr td:nth-child(5),
|
||||
.card-body .bootstrap-table tr th:nth-child(5),
|
||||
.card-body .bootstrap-table tr td:last-child,
|
||||
.card-body .bootstrap-table tr td:last-child,
|
||||
.card-body .bootstrap-table tr th:last-child {
|
||||
width: 78px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.modal-body .bootstrap-table tr td:first-child {
|
||||
word-break: keep-all;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
}
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
<link href="../css/site-responsive.css" rel="stylesheet" asp-append-version="true" />
|
||||
<style>
|
||||
@media (min-width: 768px) {
|
||||
|
||||
.card-body .bootstrap-table tr td:nth-child(5),
|
||||
.card-body .bootstrap-table tr th:nth-child(5),
|
||||
.card-body .bootstrap-table tr td:last-child,
|
||||
|
@ -26,6 +25,11 @@
|
|||
width: 78px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.modal-body .bootstrap-table tr td:first-child {
|
||||
word-break: keep-all;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<!--[if lt IE 10 ]>
|
||||
|
@ -53,7 +57,7 @@
|
|||
</div>
|
||||
<a id="pathBase" href="../" hidden></a>
|
||||
<div class="modal fade" id="dialogNew" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
|
||||
aria-hidden="true">
|
||||
aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
return healthStatus[value];
|
||||
};
|
||||
|
||||
var cate = { "db": "数据库", "file": "组件文件", "mem": "内存", "Gitee": "Gitee 接口", "gc": "垃圾回收器", "dotnet-runtime": "运行时" };
|
||||
var cate = { "db": "数据库", "file": "组件文件", "mem": "内存", "Gitee": "Gitee 接口", "gc": "垃圾回收器", "dotnet-runtime": "运行时", "environment": "环境变量" };
|
||||
var CategoryFormatter = function (value) {
|
||||
return cate[value];
|
||||
};
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Bootstrap.Security.DataAccess" Version="3.1.1-beta-02" />
|
||||
<PackageReference Include="Bootstrap.Security.Mvc" Version="3.1.1-beta-02" />
|
||||
<PackageReference Include="Bootstrap.Security.Mvc" Version="3.1.1-beta-03" />
|
||||
<PackageReference Include="Longbow" Version="3.1.0" />
|
||||
<PackageReference Include="Longbow.Cache" Version="3.1.1-beta-02" />
|
||||
<PackageReference Include="Longbow.Data" Version="3.1.0" />
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Bootstrap.Security.DataAccess" Version="3.1.1-beta-02" />
|
||||
<PackageReference Include="Bootstrap.Security.Mvc" Version="3.1.1-beta-02" />
|
||||
<PackageReference Include="Bootstrap.Security.Mvc" Version="3.1.1-beta-03" />
|
||||
<PackageReference Include="Longbow" Version="3.1.0" />
|
||||
<PackageReference Include="Longbow.Cache" Version="3.1.1-beta-02" />
|
||||
<PackageReference Include="Longbow.Data" Version="3.1.0" />
|
||||
|
|
Loading…
Reference in New Issue