mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:31:19 +08:00
Merge pull request #12932 from marksmccann/issue-12659
Composition: Append index to ref indicator links
This commit is contained in:
commit
caae314e72
@ -235,7 +235,7 @@ const ReadyMessage: FunctionComponent<{
|
||||
componentCount: number;
|
||||
leafCount: number;
|
||||
}> = ({ url, componentCount, leafCount }) => (
|
||||
<Message href={url} target="_blank">
|
||||
<Message href={url.replace(/\/?$/, '/index.html')} target="_blank">
|
||||
<BlueIcon icon="globe" />
|
||||
<div>
|
||||
<MessageTitle>View external Storybook</MessageTitle>
|
||||
@ -284,7 +284,7 @@ const ReadDocsMessage: FunctionComponent = () => (
|
||||
);
|
||||
|
||||
const ErrorOccurredMessage: FunctionComponent<{ url: string }> = ({ url }) => (
|
||||
<Message href={url} target="_blank">
|
||||
<Message href={url.replace(/\/?$/, '/index.html')} target="_blank">
|
||||
<RedIcon icon="alert" />
|
||||
<div>
|
||||
<MessageTitle>Something went wrong</MessageTitle>
|
||||
@ -294,7 +294,7 @@ const ErrorOccurredMessage: FunctionComponent<{ url: string }> = ({ url }) => (
|
||||
);
|
||||
|
||||
const LoadingMessage: FunctionComponent<{ url: string }> = ({ url }) => (
|
||||
<Message href={url} target="_blank">
|
||||
<Message href={url.replace(/\/?$/, '/index.html')} target="_blank">
|
||||
<BlueIcon icon="time" />
|
||||
<div>
|
||||
<MessageTitle>Please wait</MessageTitle>
|
||||
|
Loading…
x
Reference in New Issue
Block a user