adding peers approval flag to non user bound devices (#310)

This commit is contained in:
pascal-fischer
2023-12-25 13:01:54 +01:00
committed by GitHub
parent 748596f710
commit 87ff65f1a7

View File

@@ -679,7 +679,15 @@ export const Peers = () => {
</Row>
</span>
</Button>
<Row>{loginExpire}</Row>
<Row style={{ minWidth: "195px", paddingLeft: "15px" }}>{loginExpire} <Button
type="text"
style={{ height: "auto", whiteSpace: "normal", textAlign: "center", padding: "0px", margin: "0px" }}
onClick={() => showConfirmApprove(peer)}
className={!isAdmin ? "nohover" : ""}
>
{approval}
</Button>
</Row>
</>
);
}