Browse Source

fix(issues): Remove jitter when collapsing participants (#58395)

Scott Cooper 1 year ago
parent
commit
c548158f05
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/views/issueDetails/participantList.tsx

+ 1 - 1
static/app/views/issueDetails/participantList.tsx

@@ -81,7 +81,7 @@ export function ParticipantList({teams = [], users, children}: ParticipantListPr
           <motion.div
             variants={{
               open: {height: '100%', opacity: 1, marginTop: space(1)},
-              closed: {height: '0', opacity: 0},
+              closed: {height: '0', opacity: 0, marginTop: 0},
             }}
             initial="closed"
             animate="open"