Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix into 2823-e2e_travel_create
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
commit
3f8e4df54c
|
@ -69,8 +69,13 @@
|
|||
<vn-td expand class="before">
|
||||
<vn-one ng-repeat="old in log.oldProperties">
|
||||
<div>
|
||||
<span translate class="label">{{::old.key}}</span><span class="label">: </span>
|
||||
<span translate class="value">{{::old.value | dashIfEmpty}}</span>
|
||||
<span translate class="label alignSpan">{{::old.key}}</span><span class="label alignSpan">: </span>
|
||||
<span
|
||||
translate
|
||||
class="value ellipsis"
|
||||
vn-tooltip="{{::old.value | dashIfEmpty}}">
|
||||
{{::old.value | dashIfEmpty}}
|
||||
</span>
|
||||
</div>
|
||||
</vn-one>
|
||||
</vn-td>
|
||||
|
@ -80,8 +85,13 @@
|
|||
ng-if="!log.description"
|
||||
id="newInstance">
|
||||
<div>
|
||||
<span translate class="label">{{::new.key}}</span><span class="label">: </span>
|
||||
<span translate class="value">{{::new.value | dashIfEmpty}}</span>
|
||||
<span translate class="label alignSpan">{{::new.key}}</span><span class="label alignSpan">: </span>
|
||||
<span
|
||||
translate
|
||||
class="value ellipsis"
|
||||
vn-tooltip="{{::new.value | dashIfEmpty}}">
|
||||
{{::new.value | dashIfEmpty}}
|
||||
</span>
|
||||
</div>
|
||||
</vn-one>
|
||||
<vn-one
|
||||
|
|
|
@ -11,3 +11,4 @@ Updates: Actualiza
|
|||
Deletes: Elimina
|
||||
Views: Visualiza
|
||||
System: Sistema
|
||||
note: nota
|
|
@ -24,3 +24,14 @@ vn-log {
|
|||
}
|
||||
}
|
||||
}
|
||||
.ellipsis {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
max-width: 400px;
|
||||
text-overflow: ellipsis;
|
||||
display: inline-block;
|
||||
}
|
||||
.alignSpan {
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
}
|
Loading…
Reference in New Issue