diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/projectBranches/components/BranchRow.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/projectBranches/components/BranchRow.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/projectBranches/components/BranchRow.tsx b/server/sonar-web/src/main/js/apps/projectBranches/components/BranchRow.tsx index b103ded575f..723998c7049 100644 --- a/server/sonar-web/src/main/js/apps/projectBranches/components/BranchRow.tsx +++ b/server/sonar-web/src/main/js/apps/projectBranches/components/BranchRow.tsx @@ -46,7 +46,7 @@ interface State { } export default class BranchRow extends React.PureComponent<Props, State> { - mounted: boolean; + mounted = false; state: State = { changingLeak: false, deleting: false, renaming: false }; componentDidMount() { |