Skip to content

Commit

Permalink
adding peers approval flag to non user bound devices (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascal-fischer authored Dec 25, 2023
1 parent 748596f commit 87ff65f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/views/Peers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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>
</>
);
}
Expand Down

0 comments on commit 87ff65f

Please sign in to comment.