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

fix: rollback SubscriberList page

parent 3997bd11
No related branches found
No related tags found
No related merge requests found
......@@ -95,10 +95,6 @@ export default function SubscriberList() {
navigation("/subscriber/" + subscriber.ueId + "/" + subscriber.plmnID);
};
const handleDuplicate = (subscriber: Subscriber) => {
navigation("/subscriber/create/" + subscriber.ueId + "/" + subscriber.plmnID)
};
const tableView = (
<React.Fragment>
<Table>
......@@ -108,7 +104,6 @@ export default function SubscriberList() {
<TableCell>UE ID</TableCell>
<TableCell>Delete</TableCell>
<TableCell>View</TableCell>
<TableCell>Duplicate</TableCell>
</TableRow>
</TableHead>
<TableBody>
......@@ -130,11 +125,6 @@ export default function SubscriberList() {
VIEW
</Button>
</TableCell>
<TableCell>
<Button color="primary" variant="contained" onClick={() => handleDuplicate(row)}>
DUPLICATE
</Button>
</TableCell>
</TableRow>
))}
</TableBody>
......
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