File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
apps/webapp/app/v3/services/alerts Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -631,7 +631,7 @@ export class DeliverAlertService extends BaseService {
631
631
type : "section" ,
632
632
text : {
633
633
type : "mrkdwn" ,
634
- text : this . #truncateSlackText ( `\`\`\`${ error . stackTrace ?? error . message } \`\`\`` ) ,
634
+ text : `\`\`\`${ this . #truncateSlackText ( error . stackTrace ?? error . message ) } \`\`\`` ,
635
635
} ,
636
636
} ,
637
637
{
@@ -743,7 +743,7 @@ export class DeliverAlertService extends BaseService {
743
743
type : "section" ,
744
744
text : {
745
745
type : "mrkdwn" ,
746
- text : this . #truncateSlackText ( `\`\`\`${ error . stackTrace ?? error . message } \`\`\`` ) ,
746
+ text : `\`\`\`${ this . #truncateSlackText ( error . stackTrace ?? error . message ) } \`\`\`` ,
747
747
} ,
748
748
} ,
749
749
{
@@ -843,9 +843,9 @@ export class DeliverAlertService extends BaseService {
843
843
type : "section" ,
844
844
text : {
845
845
type : "mrkdwn" ,
846
- text : this . #truncateSlackText(
847
- `\`\`\` ${ preparedError . stack ?? preparedError . message } \`\`\``
848
- ) ,
846
+ text : `\`\`\` ${ this . #truncateSlackText(
847
+ preparedError . stack ?? preparedError . message
848
+ ) } \`\`\`` ,
849
849
} ,
850
850
} ,
851
851
{
You can’t perform that action at this time.
0 commit comments