Browse Source

feat(metrics-extraction): Fix merge issue

Arthur Knaus 6 days ago
parent
commit
999cd524de

+ 1 - 1
static/app/views/settings/projectMetrics/metricsExtractionRulesTable.tsx

@@ -154,7 +154,7 @@ function RulesTable({
       {extractionRules
         .toSorted((a, b) => a?.spanAttribute?.localeCompare(b?.spanAttribute))
         .map(rule => (
-          <Fragment key={rule.spanAttribute + rule.type + rule.unit}>
+          <Fragment key={rule.spanAttribute + rule.unit}>
             <Cell>{rule.spanAttribute}</Cell>
             <Cell right>
               {rule.conditions.length ? (