Skip to content

Commit

Permalink
Fix some tables
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesús Ángel González authored and havidarou committed Jul 9, 2018
1 parent f31686c commit e9b23c8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion public/templates/agents/agents-syscollector.html
Expand Up @@ -67,7 +67,8 @@
<wazuh-table
flex
path="'/syscollector/' + agent.id + '/packages'"
keys="['name','architecture','version',{value:'vendor',size:3},{value:'description',size:3}]">
rows-per-page="8"
keys="[{value:'name',size:2},'architecture',{value:'version',size:2},{value:'vendor',size:2},{value:'description',size:3}]">
</wazuh-table>
</div>
<div layout="row" class="md-padding" ng-if="agent">
Expand Down
8 changes: 5 additions & 3 deletions public/templates/manager/groups/groups-preview.html
Expand Up @@ -72,10 +72,11 @@
<div layout="row" ng-if="!lookingGroup" class="md-padding">
<wazuh-table
flex
extra-limit="true"
path="'/agents/groups'"
keys="['name','count','merged_sum']"
keys="['name',{value:'count',size:1},{value:'merged_sum',size:3}]"
allow-click="true"
rows-per-page="19">
rows-per-page="14">
</wazuh-table>
</div>
<!-- End groups table -->
Expand Down Expand Up @@ -113,11 +114,12 @@
<!-- Group files table -->
<div layout="row" ng-if="lookingGroup && groupsSelectedTab==='files' && !fileViewer && currentGroup" class="md-padding">
<wazuh-table
extra-limit="true"
flex
path="'/agents/groups/' + currentGroup.name + '/files'"
keys="[{value:'filename',size:2},{value:'hash',size:6}]"
allow-click="true"
rows-per-page="14">
rows-per-page="10">
</wazuh-table>
</div>
<!-- End Group files table -->
Expand Down
1 change: 1 addition & 0 deletions public/templates/manager/manager-osseclog.html
Expand Up @@ -58,6 +58,7 @@
<div layout="row" layout-padding>
<wazuh-table
flex
extra-limit="true"
path="'/manager/logs'"
keys="['timestamp',{value:'tag',size:2},'level',{value:'description',size:4,nosortable:true}]"
rows-per-page="15">
Expand Down

0 comments on commit e9b23c8

Please sign in to comment.