Skip to content

Commit

Permalink
fix(react-message-bar): update examples to have underlined links
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorgenaev committed Sep 17, 2024
1 parent de8118d commit 600c392
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const Actions = () => (
<MessageBar>
<MessageBarBody>
<MessageBarTitle>Descriptive title</MessageBarTitle>
Message providing information to the user with actionable insights. <Link>Link</Link>
Message providing information to the user with actionable insights. <Link inline>Link</Link>
</MessageBarBody>
<MessageBarActions containerAction={<Button appearance="transparent" icon={<DismissRegular />} />}>
<Button>Action</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const Animation = () => {
<MessageBar key={`${intent}-${id}`} intent={intent}>
<MessageBarBody>
<MessageBarTitle>Descriptive title</MessageBarTitle>
Message providing information to the user with actionable insights. <Link>Link</Link>
Message providing information to the user with actionable insights. <Link inline>Link</Link>
</MessageBarBody>
<MessageBarActions
containerAction={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const Default = () => (
<MessageBar>
<MessageBarBody>
<MessageBarTitle>Descriptive title</MessageBarTitle>
Message providing information to the user with actionable insights. <Link>Link</Link>
Message providing information to the user with actionable insights. <Link inline>Link</Link>
</MessageBarBody>
<MessageBarActions
containerAction={<Button aria-label="dismiss" appearance="transparent" icon={<DismissRegular />} />}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const Dismiss = () => {
<MessageBar key={`${intent}-${id}`} intent={intent}>
<MessageBarBody>
<MessageBarTitle>Descriptive title</MessageBarTitle>
Message providing information to the user with actionable insights. <Link>Link</Link>
Message providing information to the user with actionable insights. <Link inline>Link</Link>
</MessageBarBody>
<MessageBarActions
containerAction={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const Intent = () => {
<MessageBar key={intent} intent={intent}>
<MessageBarBody>
<MessageBarTitle>Intent {intent}</MessageBarTitle>
Message providing information to the user with actionable insights. <Link>Link</Link>
Message providing information to the user with actionable insights. <Link inline>Link</Link>
</MessageBarBody>
</MessageBar>
))}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const ManualLayout = () => {
<MessageBar key={intent} layout={single ? 'singleline' : 'multiline'} intent={intent}>
<MessageBarBody>
<MessageBarTitle>Descriptive title</MessageBarTitle>
Message providing information to the user with actionable insights. <Link>Link</Link>
Message providing information to the user with actionable insights. <Link inline>Link</Link>
</MessageBarBody>
<MessageBarActions
containerAction={<Button aria-label="dismiss" appearance="transparent" icon={<DismissRegular />} />}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const Reflow = () => {
<MessageBar intent="success">
<MessageBarBody>
<MessageBarTitle>Descriptive title</MessageBarTitle>
Message providing information to the user with actionable insights. <Link>Link</Link>
Message providing information to the user with actionable insights. <Link inline>Link</Link>
</MessageBarBody>
<MessageBarActions
containerAction={<Button aria-label="dismiss" appearance="transparent" icon={<DismissRegular />} />}
Expand Down

0 comments on commit 600c392

Please sign in to comment.