Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shift plexus to TypeScript (from flowtypes) #331

Merged
merged 14 commits into from
Mar 8, 2019
Prev Previous commit
Next Next commit
Fix a few issues from merging master
Signed-off-by: Joe Farro <[email protected]>
  • Loading branch information
tiffon committed Feb 24, 2019
commit bfd29f250e982f850b4f61adb1087ab3d89f7abe
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ describe('<SpanBar>', () => {
// Log entries
if (s === 10) {
return { start: 0.1, end: 0.1 };
} else if (s === 20) {
}
if (s === 20) {
return { start: 0.2, end: 0.2 };
}
return { error: 'error' };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type AccordianKeyValuesProps = {
isOpen: boolean,
label: string,
linksGetter: ?(KeyValuePair[], number) => Link[],
onToggle: null | (() => void),
onToggle?: null | (() => void),
};

// export for tests
Expand Down