Skip to content

Commit

Permalink
feat(toaster): add support for fullTemplateTitle
Browse files Browse the repository at this point in the history
  • Loading branch information
AAGaming00 committed Jul 26, 2024
1 parent bb80861 commit af93263
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/Toast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ const GamepadUIQAMToast: FC<ToastProps> = memo(({ toast }) => {
</div>
)}
</div>
<div className={templateClasses.StandardNotificationDescription}>{toast.title}</div>
<div className={templateClasses.StandardNotificationDescription}>
{toast.fullTemplateTitle || toast.title}
</div>
<div className={templateClasses.StandardNotificationSubText}>{toast.body}</div>
</div>
{/* TODO support NewIndicator */}
Expand Down

0 comments on commit af93263

Please sign in to comment.