Skip to content

Commit e758ff4

Browse files
Increase title length
1 parent c1a5be8 commit e758ff4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

statusphere-frontend/src/components/Outages.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ export function Outages(props: OutagesProps) {
8181
<TableCell>{convertToSimpleDate(incident.startTime)}</TableCell>
8282
<TableCell className={"max-w-[300px] break-words"}><a className={"max-w-[300px] break-words"}
8383
href={incident.deepLink}> {(() => {
84-
if (incident.title.length > 50) {
85-
return incident.title.substring(0, 50)
84+
if (incident.title.length > 100) {
85+
return incident.title.substring(0, 100)
8686
}
8787
return incident.title
8888
})()} </a></TableCell>

0 commit comments

Comments
 (0)