Skip to content

Commit

Permalink
Pierre's feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuRA committed Jan 17, 2024
1 parent d3c462c commit cbd76d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions packages/xo-web/src/xo-app/home/host-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,7 @@ export default class HostItem extends Component {
</p>
<ul>
{map(poolHosts, host => (
<li>
<Host id={host.id} />: {host.version}
</li>
<li>{_('keyValue', { key: <Host id={host.id} />, value: host.version })}</li>
))}
</ul>
</div>
Expand Down
4 changes: 1 addition & 3 deletions packages/xo-web/src/xo-app/home/pool-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,7 @@ export default class PoolItem extends Component {
</p>
<ul>
{map(hosts, host => (
<li>
<Host id={host.id} />: {host.version}
</li>
<li>{_('keyValue', { key: <Host id={host.id} />, value: host.version })}</li>
))}
</ul>
</div>
Expand Down

0 comments on commit cbd76d3

Please sign in to comment.