From 6a997a2c79643f7791d5faa56504cede4693ff52 Mon Sep 17 00:00:00 2001
From: William Enright <william.enright@savoirfairelinux.com>
Date: Tue, 29 Sep 2020 15:46:40 -0400
Subject: [PATCH] Fixed device revocation tooltip + edit button color

Change-Id: Ie3fc9ef2e83d843a59ada34aa0404c81dfa20c83
---
 .../jss/material-dashboard-react/components/devicesStyle.js  | 5 +++--
 jams-react-client/src/components/Devices/Devices.js          | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/jams-react-client/src/assets/jss/material-dashboard-react/components/devicesStyle.js b/jams-react-client/src/assets/jss/material-dashboard-react/components/devicesStyle.js
index 58a5e9c0..a5699e82 100644
--- a/jams-react-client/src/assets/jss/material-dashboard-react/components/devicesStyle.js
+++ b/jams-react-client/src/assets/jss/material-dashboard-react/components/devicesStyle.js
@@ -2,7 +2,8 @@ import {
   defaultFont,
   primaryColor,
   dangerColor,
-  grayColor
+  grayColor,
+  infoColor
 } from "assets/jss/material-dashboard-react.js";
 import tooltipStyle from "assets/jss/material-dashboard-react/tooltipStyle.js";
 import checkboxAdnRadioStyle from "assets/jss/material-dashboard-react/checkboxAdnRadioStyle.js";
@@ -45,7 +46,7 @@ const tasksStyle = {
   },
   edit: {
     backgroundColor: "transparent",
-    color: primaryColor[0],
+    color: infoColor[0],
     boxShadow: "none"
   },
   close: {
diff --git a/jams-react-client/src/components/Devices/Devices.js b/jams-react-client/src/components/Devices/Devices.js
index 7eb82d48..4a099a92 100755
--- a/jams-react-client/src/components/Devices/Devices.js
+++ b/jams-react-client/src/components/Devices/Devices.js
@@ -206,7 +206,7 @@ export default function Devices(props) {
                                 </Tooltip>
                                 <Tooltip
                                     id="tooltip-top-start"
-                                    title="Desactivate Device"
+                                    title="Revoke Device"
                                     placement="top"
                                     classes={{ tooltip: classes.tooltip }}
                                 >
-- 
GitLab