Changed styles of inactive users in table
This commit is contained in:
parent
1bb951dcda
commit
a0c3a41360
@ -1,4 +1,6 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
import React from "react";
|
||||||
|
import ReactDOM from "react-dom";
|
||||||
|
|
||||||
function head_checkbox() {
|
function head_checkbox() {
|
||||||
let head_checkbox = document.getElementById("head-checkbox");
|
let head_checkbox = document.getElementById("head-checkbox");
|
||||||
@ -45,13 +47,19 @@ class ModelUserTableRows extends React.Component {
|
|||||||
class ZendeskUserTableRow extends React.Component {
|
class ZendeskUserTableRow extends React.Component {
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<tr className={"table-secondary"}>
|
<tr className={"table-secondary text-secondary"}>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td>
|
<td>
|
||||||
<a href="#">{this.props.user.name}</a>
|
<a href="#" style={{ color: "grey", fontStyle: "italic" }}>
|
||||||
|
{this.props.user.name}
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
<td style={{ color: "grey", fontStyle: "italic" }}>
|
||||||
|
{this.props.user.email}
|
||||||
|
</td>
|
||||||
|
<td style={{ color: "grey", fontStyle: "italic" }}>
|
||||||
|
{this.props.user.zendesk_role}
|
||||||
</td>
|
</td>
|
||||||
<td>{this.props.user.email}</td>
|
|
||||||
<td>{this.props.user.zendesk_role}</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user