Browse Source

fix(stacktrace): Right-align repeated frames icon (#55676)

Luca Forstner 1 year ago
parent
commit
2c6ce1b295
1 changed files with 1 additions and 2 deletions
  1. 1 2
      static/app/components/events/interfaces/frame/deprecatedLine.tsx

+ 1 - 2
static/app/components/events/interfaces/frame/deprecatedLine.tsx

@@ -326,9 +326,9 @@ export class DeprecatedLine extends Component<Props, State> {
                 />
               </div>
             </LeftLineTitle>
-            {this.renderRepeats()}
           </DefaultLineTitleWrapper>
           <DefaultLineTagWrapper>
+            {this.renderRepeats()}
             {organization?.features.includes('anr-analyze-frames') && anrCulprit ? (
               <Tag type="warning" to="" onClick={this.scrollToSuspectRootCause}>
                 {t('Suspect Frame')}
@@ -523,7 +523,6 @@ const LeftLineTitle = styled('div')`
 
 const RepeatedContent = styled(LeftLineTitle)`
   justify-content: center;
-  margin-right: ${space(1)};
 `;
 
 const NativeLineContent = styled('div')<{isFrameAfterLastNonApp: boolean}>`