chore: Move to prettier standard double quotes (#1309)

This commit is contained in:
Tom Moor
2020-06-20 13:59:15 -07:00
committed by GitHub
parent 2a3b9e2104
commit f43deb7940
444 changed files with 5988 additions and 5977 deletions

View File

@ -1,7 +1,7 @@
// @flow
import * as React from 'react';
import { CheckmarkIcon } from 'outline-icons';
import styled from 'styled-components';
import * as React from "react";
import { CheckmarkIcon } from "outline-icons";
import styled from "styled-components";
type Props = {
onClick?: (SyntheticEvent<>) => void | Promise<void>,
@ -28,7 +28,7 @@ const DropdownMenuItem = ({
{selected !== undefined && (
<React.Fragment>
<CheckmarkIcon
color={selected === false ? 'transparent' : undefined}
color={selected === false ? "transparent" : undefined}
/>&nbsp;
</React.Fragment>
)}
@ -57,12 +57,12 @@ const MenuItem = styled.a`
}
svg {
opacity: ${props => (props.disabled ? '.5' : 1)};
opacity: ${props => (props.disabled ? ".5" : 1)};
}
${props =>
props.disabled
? 'pointer-events: none;'
? "pointer-events: none;"
: `
&:hover {