We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1a5be8 commit e758ff4Copy full SHA for e758ff4
statusphere-frontend/src/components/Outages.tsx
@@ -81,8 +81,8 @@ export function Outages(props: OutagesProps) {
81
<TableCell>{convertToSimpleDate(incident.startTime)}</TableCell>
82
<TableCell className={"max-w-[300px] break-words"}><a className={"max-w-[300px] break-words"}
83
href={incident.deepLink}> {(() => {
84
- if (incident.title.length > 50) {
85
- return incident.title.substring(0, 50)
+ if (incident.title.length > 100) {
+ return incident.title.substring(0, 100)
86
}
87
return incident.title
88
})()} </a></TableCell>
0 commit comments