Skip to content
Snippets Groups Projects
Commit 996ab5d8 authored by Bogdan Cochior's avatar Bogdan Cochior
Browse files

style: remove ? and : characters

parent fd3e26ab
No related branches found
No related tags found
1 merge request!13Sprint #14
...@@ -37,7 +37,7 @@ const renderHE = (currentUser, project) => { ...@@ -37,7 +37,7 @@ const renderHE = (currentUser, project) => {
const HandlingEditorSection = ({ currentUser, project }) => ( const HandlingEditorSection = ({ currentUser, project }) => (
<Root> <Root>
<HEText>Handling Editor?</HEText> <HEText>Handling Editor</HEText>
{renderHE(currentUser, project)} {renderHE(currentUser, project)}
</Root> </Root>
) )
......
...@@ -52,10 +52,10 @@ const TR = ({ ...@@ -52,10 +52,10 @@ const TR = ({
</DateParser> </DateParser>
<td> <td>
<StatusText> <StatusText>
{`${r.status === 'accepted' ? 'Agreed: ' : `${r.status}: `}`} {`${r.status === 'accepted' ? 'Agreed' : r.status}`}
</StatusText> </StatusText>
<DateParser timestamp={r.respondedOn}> <DateParser timestamp={r.respondedOn}>
{timestamp => <DateText>{timestamp}</DateText>} {timestamp => <DateText>{`: ${timestamp}`}</DateText>}
</DateParser> </DateParser>
</td> </td>
<DateParser timestamp={submittedOn}> <DateParser timestamp={submittedOn}>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment