Skip to content

Commit de023ee

Browse files
committed
style(dashboards): Fix eslint template literal lint
1 parent 695d819 commit de023ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

static/app/views/dashboards/utils/prebuiltConfigs/frontendOverview/frontendOverview.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ const TABLE_FIELDS = [
185185
`equation|failure_rate_if(${SpanFields.IS_TRANSACTION},equals,true)`,
186186
`count_unique(${SpanFields.USER})`,
187187
`equation|sum_if(${SpanFields.SPAN_DURATION},${SpanFields.IS_TRANSACTION},equals,true)`,
188-
`performance_score(measurements.score.total)`,
188+
'performance_score(measurements.score.total)',
189189
];
190190

191191
const TRANSACTIONS_TABLE: Widget = {
@@ -207,7 +207,7 @@ const TRANSACTIONS_TABLE: Widget = {
207207
`equation|failure_rate_if(${SpanFields.IS_TRANSACTION},equals,true)`,
208208
`count_unique(${SpanFields.USER})`,
209209
`equation|sum_if(${SpanFields.SPAN_DURATION},${SpanFields.IS_TRANSACTION},equals,true)`,
210-
`performance_score(measurements.score.total)`,
210+
'performance_score(measurements.score.total)',
211211
],
212212
fields: TABLE_FIELDS,
213213
fieldAliases: [

0 commit comments

Comments
 (0)