Skip to content

Commit 7060024

Browse files
author
minjk-bl
committed
Fix bug on Profiling app
1 parent 1b342f1 commit 7060024

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

js/m_apps/Profiling.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ define([
7676
code.append(saveas);
7777
break;
7878
}
79-
com_interface.insertCell('code', code.toString(), 'Data Analysis > Profiling');
79+
com_interface.insertCell('code', code.toString(), true, 'Data Analysis > Profiling');
8080
that.loadReportList();
8181
});
8282
}
@@ -113,7 +113,7 @@ define([
113113
}
114114
var code = new com_String();
115115
code.appendFormat("{0}.to_file('{1}')", varName, path);
116-
com_interface.insertCell('code', code.toString(), 'Data Analysis > Profiling');
116+
com_interface.insertCell('code', code.toString(), true, 'Data Analysis > Profiling');
117117

118118
that.selectedReport = '';
119119
});
@@ -124,7 +124,7 @@ define([
124124
default:
125125
return;
126126
}
127-
com_interface.insertCell('code', code.toString(), 'Data Analysis > Profiling');
127+
com_interface.insertCell('code', code.toString(), true, 'Data Analysis > Profiling');
128128
that.loadReportList();
129129
});
130130
}
@@ -143,7 +143,8 @@ define([
143143

144144
generateInstallCode() {
145145
return [
146-
'!pip install pandas-profiling'
146+
'!pip install pandas-profiling',
147+
'!pip install ipywidgets'
147148
];
148149
}
149150

0 commit comments

Comments
 (0)