Changed styles of inactive users in table

This commit is contained in:
Yuriy Kulakov 2021-04-25 20:22:19 +03:00
parent 1bb951dcda
commit a0c3a41360

View File

@ -1,4 +1,6 @@
"use strict";
import React from "react";
import ReactDOM from "react-dom";
function head_checkbox() {
let head_checkbox = document.getElementById("head-checkbox");
@ -45,13 +47,19 @@ class ModelUserTableRows extends React.Component {
class ZendeskUserTableRow extends React.Component {
render() {
return (
<tr className={"table-secondary"}>
<tr className={"table-secondary text-secondary"}>
<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>{this.props.user.email}</td>
<td>{this.props.user.zendesk_role}</td>
</tr>
);
}