diff options
author | Luiz Kill <luizkill@gmail.com> | 2022-08-02 11:43:52 -0300 |
---|---|---|
committer | Luiz Kill <luizkill@gmail.com> | 2022-08-02 11:43:52 -0300 |
commit | a769c2d1206e86cf446ffdf8c7b68ef834624d0a (patch) | |
tree | 40d3ff70f8c6af3a91bd0e5ca5a79ad56df7ed15 /modern/src/main | |
parent | 4d31533af3b66fbbcff9565bedc13f4916b68e6c (diff) | |
download | trackermap-web-a769c2d1206e86cf446ffdf8c7b68ef834624d0a.tar.gz trackermap-web-a769c2d1206e86cf446ffdf8c7b68ef834624d0a.tar.bz2 trackermap-web-a769c2d1206e86cf446ffdf8c7b68ef834624d0a.zip |
Refactors the handle selection
Diffstat (limited to 'modern/src/main')
-rw-r--r-- | modern/src/main/StatusCard.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/main/StatusCard.js b/modern/src/main/StatusCard.js index f80d9705..5ca45066 100644 --- a/modern/src/main/StatusCard.js +++ b/modern/src/main/StatusCard.js @@ -157,7 +157,7 @@ const StatusCard = ({ deviceId, onClose }) => { <> {device && ( <Draggable - handle={deviceImage ? `.${classes.media}` : `.${classes.header}`} + handle={`.${classes.media}, .${classes.header}`} > <Card elevation={3} className={classes.card}> {deviceImage ? ( |