Skip to content
Snippets Groups Projects
Unverified Commit 4566f7f7 authored by CTFang@WireLab's avatar CTFang@WireLab
Browse files

feat: subscriber read static-ip ui

parent f065f12b
No related branches found
No related tags found
No related merge requests found
......@@ -417,6 +417,18 @@ export default function SubscriberRead() {
</TableCell>
</TableRow>
</TableBody>
<TableBody>
<TableRow>
<TableCell style={{ width: "40%" }}>StaticIpv4</TableCell>
<TableCell>
{row.dnnConfigurations![dnn]["staticIpAddress"] == null
? "Not Set"
: row.dnnConfigurations![dnn]["staticIpAddress"]?.length == 0
? ""
: row.dnnConfigurations![dnn]["staticIpAddress"]![0].ipv4Addr!}
</TableCell>
</TableRow>
</TableBody>
</Table>
{flowRule(dnn, row.singleNssai!)}
{upSecurity(row.dnnConfigurations![dnn])}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment