Skip to content

Commit 6d9b891

Browse files
author
minjk-bl
committed
Fix bug on Profiling app which is not checking its required modules
1 parent 8562f05 commit 6d9b891

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

js/m_apps/Profiling.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,10 @@ define([
8282
code.append(saveas);
8383
break;
8484
}
85-
com_interface.insertCell('code', code.toString(), true, 'Data Analysis > Profiling');
86-
that.loadReportList();
85+
that.checkAndRunModules(true).then(function() {
86+
com_interface.insertCell('code', code.toString(), true, 'Data Analysis > Profiling');
87+
that.loadReportList();
88+
});
8789
});
8890
}
8991

0 commit comments

Comments
 (0)