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

fix(avatar): title type in Avatar #4529

Merged
merged 3 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/quick-peas-care.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@nextui-org/alert": patch
---

fix title type in Avatar (#4525)
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/alert.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ Alert has the following slots:
data={[
{
attribute: "title",
type: "string",
type: "ReactNode",
description: "The alert title",
default: "-"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/components/alert/src/alert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const Alert = forwardRef<"div", AlertProps>((props, ref) => {
{customIcon || <IconComponent {...getAlertIconProps()} />}
</div>
<div {...getMainWrapperProps()}>
{title && <div {...getTitleProps()}>{title}</div>}
{!isEmpty(title) && <div {...getTitleProps()}>{title}</div>}
{!isEmpty(description) && <div {...getDescriptionProps()}>{description}</div>}
{children}
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/components/alert/src/use-alert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ interface Props extends HTMLNextUIProps<"div"> {
/**
* title of the alert message
*/
title?: string;
title?: ReactNode;
/**
* description of the alert message
*/
Expand Down
Loading