diff options
Diffstat (limited to 'server/sonar-web/src/main')
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileInheritance.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileInheritance.tsx b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileInheritance.tsx index 2498be97778..968de095f73 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileInheritance.tsx +++ b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileInheritance.tsx @@ -103,7 +103,12 @@ export default class ProfileInheritance extends React.PureComponent<Props, State }; handleParentChange = () => { - this.props.updateProfiles(); + this.props.updateProfiles().then( + () => { + this.loadData(); + }, + () => {} + ); this.closeForm(); }; |