1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-29 18:52:22 +01:00

(ui) Remove liste style on statistics table

This commit is contained in:
Vincent 2023-09-06 15:52:05 +02:00
parent 4f75a2c20e
commit dd2fcbd352
2 changed files with 6 additions and 1 deletions

View File

@ -989,6 +989,11 @@ p, .widget p {
cursor: pointer;
}
.list-none {
list-style-type: none;
padding-inline-start: 0;
}
@media screen and (min-width: $screen-lg-min) {
.b-r-lg {
border-right: 1px solid $border-color;

View File

@ -288,7 +288,7 @@
<td ng-repeat="field in selectedIndex.additional_fields">
<ng-switch on="field.data_type">
<span ng-switch-when="date">{{formatDate(datum._source[field.key])}}</span>
<ul ng-switch-when="list">
<ul ng-switch-when="list" class="list-none">
<li ng-repeat="elem in uniq(datum._source[field.key])">{{elem.name}}</li>
</ul>
<span ng-switch-default>{{datum._source[field.key]}}</span>