Skip to content

Commit

Permalink
add newline to end of file
Browse files Browse the repository at this point in the history
  • Loading branch information
eapearson committed Feb 9, 2021
1 parent 4b28ccc commit 1e31817
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ const detailsHeader = async (data: Doc, cache: KBaseCache) => {
{data.is_public || !sharedWith.length ? (
<></>
) : (
detailsHeaderItem('Shared with', sharedWithLinks)
)}
detailsHeaderItem('Shared with', sharedWithLinks)
)}
</div>
</>
);
Expand Down Expand Up @@ -234,9 +234,8 @@ export class NarrativeDetails extends React.Component<Props, State> {
return <div></div>;
}
const wsid = activeItem.access_group;
const narrativeHref = `${
Runtime.getConfig().view_routes.narrative
}/${wsid}`;
const narrativeHref = `${Runtime.getConfig().view_routes.narrative
}/${wsid}`;
let content: JSX.Element | string = '';
// Choose which content to show based on selected tab
switch (view) {
Expand Down Expand Up @@ -301,4 +300,4 @@ export class NarrativeDetails extends React.Component<Props, State> {
</div>
);
}
}
}

0 comments on commit 1e31817

Please sign in to comment.