-
Notifications
You must be signed in to change notification settings - Fork 367
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: [M3-7256] - Added spacing for Hively external link (#9776)
--------- Co-authored-by: Jaalah Ramos <jaalah.ramos@gmail.com>
- Loading branch information
1 parent
5ba8ec5
commit 2d6019b
Showing
3 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@linode/manager": Fixed | ||
--- | ||
|
||
Customer success Hively overlap issue ([#9776](https://github.com/linode/manager/pull/9776)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
|
||
import { Hively } from './Hively'; | ||
|
||
import type { Meta, StoryObj } from '@storybook/react'; | ||
|
||
const meta: Meta<typeof Hively> = { | ||
args: { | ||
linodeUsername: 'linodeuser', | ||
replyId: '123', | ||
ticketId: '123', | ||
}, | ||
component: Hively, | ||
title: 'Components/Hively', | ||
}; | ||
|
||
export default meta; | ||
|
||
type Story = StoryObj<typeof Hively>; | ||
|
||
export const Default: Story = { | ||
args: {}, | ||
render: (args) => <Hively {...args} />, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters