diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/ObjectComponent.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/ObjectComponent.js b/src/components/ObjectComponent.js index 2255585..2ae0b6e 100644 --- a/src/components/ObjectComponent.js +++ b/src/components/ObjectComponent.js @@ -100,7 +100,11 @@ function UserPresentation(props) { function UserPresentationElement(props) { return ( - <Card variant="outlined" sx={{ padding: "1em", marginTop: "1em" }}> + <Card + className="user-presentation-element" + variant="outlined" + sx={{ padding: "1em", marginTop: "1em" }} + > <b>{props.display_name}</b>: {props.data.toString()} {props.description && ( <Alert severity="info" sx={{ marginTop: "0.5em" }}> |