Skip to content

Commit

Permalink
Merge pull request #318 from sinamics/wrap_listening_list
Browse files Browse the repository at this point in the history
Wrap controller "listening on" ip list
  • Loading branch information
sinamics authored Mar 2, 2024
2 parents 13129c3 + 1236ec0 commit 1354c3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/admin/controller/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ const Controller = () => {
<p>{t("controller.management.allowTcpFallbackRelay")}</p>
<p>{allowTcpFallbackRelay ? "Yes" : "No"}</p>
</div>
<div className="flex items-center justify-between">
<div className="grid grid-cols-3">
<p>{t("controller.management.listeningOn")}</p>
<div className="list-inside list-disc space-x-2">
<div className="col-span-2 gap-1 flex flex-col items-end">
{listeningOn?.map((address) => (
<span key={address}>{address}</span>
))}
Expand Down

0 comments on commit 1354c3f

Please sign in to comment.