1
0
mirror of https://github.com/uetchy/namae.git synced 2025-08-21 10:18:12 +09:00

fix: add integration section

This commit is contained in:
2020-07-29 14:02:27 +09:00
committed by uetchy
parent 18d956abb1
commit f86bcaa05a
2 changed files with 49 additions and 43 deletions

View File

@@ -219,7 +219,8 @@ export const Result: React.FC<{
<OutboundLink
to={link}
eventLabel={link.split('/')[2]}
target="_blank">
target="_blank"
>
{content}
</OutboundLink>
) : (
@@ -274,7 +275,8 @@ class ErrorBoundary extends React.Component<
this.state.eventId ? ` (${this.state.eventId})` : ''
}`}
placement="top"
trigger={['hover']}>
trigger={['hover']}
>
<ResultItem color={COLORS.error}>
<ResultIcon>
<GoInfo />
@@ -296,7 +298,8 @@ const ErrorHandler: React.FC = ({ children }) => (
<ResultContainer>
<BarLoader />
</ResultContainer>
}>
}
>
{children}
</Suspense>
</ErrorBoundary>