Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/components/formatter/collaborator-formatter.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import styles from '../../css/plugin-layout.module.css';

class CollaboratorFormatter extends Component {

static propTypes = {
value: PropTypes.array,
collaborators: PropTypes.array,
};

getCollaboratorsList = () => {
let { value, collaborators } = this.props;
let validCollaborators = [];
Expand All @@ -21,7 +27,7 @@ class CollaboratorFormatter extends Component {
}
});
return validCollaborators;
}
};

render() {
let collaboratorList = this.getCollaboratorsList();
Expand Down
5 changes: 2 additions & 3 deletions src/css/select.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,10 @@
cursor: pointer;
}

.dtable-select .dtable-icon-drop-down {
.dtable-select .dtable-icon-down3 {
display: inline-block;
font-size: 12px;
color: rgba(116, 116, 116, 1);
transform: scale(.8) translateY(2px);
transition: all .1s;
}

Expand Down Expand Up @@ -87,4 +86,4 @@
line-height: 1;
font-size: 14px;
color: #949494;
}
}