Merge pull request #2299 from urbit/mp/os1/link/unread-gray

link: correct unread color class
This commit is contained in:
Logan 2020-02-15 22:35:29 -08:00 committed by GitHub
commit 2b3c4b68be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ export class LinkItem extends Component {
let hostname = URLparser.exec(props.url);
const seenState = props.seen
? "grey2"
? "gray2"
: "green2 pointer";
const seenAction = props.seen
? ()=>{}