aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/common/modals.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/components/common/modals.js')
-rw-r--r--server/sonar-web/src/main/js/components/common/modals.js11
1 files changed, 4 insertions, 7 deletions
diff --git a/server/sonar-web/src/main/js/components/common/modals.js b/server/sonar-web/src/main/js/components/common/modals.js
index a86a262d40c..7e8da099663 100644
--- a/server/sonar-web/src/main/js/components/common/modals.js
+++ b/server/sonar-web/src/main/js/components/common/modals.js
@@ -53,13 +53,10 @@ export default Marionette.ItemView.extend({
show() {
const that = this;
- setTimeout(
- () => {
- that.$el.addClass('in');
- $('.' + that.overlayClassName).addClass('in');
- },
- 0
- );
+ setTimeout(() => {
+ that.$el.addClass('in');
+ $('.' + that.overlayClassName).addClass('in');
+ }, 0);
},
onDestroy() {