We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f80ac5d commit 5352560Copy full SHA for 5352560
src/common/vpGroupby.js
@@ -437,6 +437,9 @@ define([
437
page.appendFormatLine('<option value="{0}">{1}</option>', '', 'Select method type');
438
page.appendFormatLine('<option value="{0}">{1}</option>', 'typing', 'Typing');
439
this.methodList.forEach(method => {
440
+ if (method.value == '') {
441
+ return;
442
+ }
443
page.appendFormatLine('<option value="{0}">{1}</option>', method.value, method.label);
444
});
445
page.appendLine('</select>');
@@ -1196,7 +1199,7 @@ define([
1196
1199
}
1197
1200
1198
1201
- if (method != '') {
1202
+ if (method != '' || advanced) {
1203
// when using as_index option with Grouper, use .reset_index()
1204
if (useGrouper && resetIndex) {
1205
methodStr.append('.reset_index()');
0 commit comments