Skip to content

Commit fda8a13

Browse files
author
minjk-bl
committed
Apps > Merge -> Apps > Bind - app name changed
1 parent 0367d92 commit fda8a13

File tree

6 files changed

+118
-118
lines changed

6 files changed

+118
-118
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
.vp-mg-container {
1+
.vp-bd-container {
22
width: 700px;
33
height: 550px;
44
}
55

6-
.vp-mg-container .vp-pp-body {
6+
.vp-bd-container .vp-pp-body {
77
overflow: hidden;
88
}
99

10-
.vp-mg-df-box {
10+
.vp-bd-df-box {
1111
display: grid;
1212
grid-template-rows: 30px;
1313
grid-row-gap: 5px;
1414
}
1515

16-
.vp-mg-df-refresh {
16+
.vp-bd-df-refresh {
1717
display: inline-block;
1818
cursor: pointer;
1919
margin-left: 5px;
2020
}
21-
.vp-mg-df-box label {
21+
.vp-bd-df-box label {
2222
font-weight: bold;
2323
}
24-
.vp-mg-df-box select,
25-
.vp-mg-df-box input {
24+
.vp-bd-df-box select,
25+
.vp-bd-df-box input {
2626
width: 160px;
2727
}
File renamed without changes.

src/api_block/constData.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -811,11 +811,11 @@ define([
811811
color: 2,
812812
config: { width: '700px', height: '550px' }
813813
},
814-
'merge': {
815-
label: 'Merge',
816-
tooltip: 'Work In Progress', // FIXME:
817-
file: 'nbextensions/visualpython/src/common/vpMerge',
818-
icon: '/nbextensions/visualpython/resource/apps/apps_merge.svg',
814+
'bind': {
815+
label: 'Bind',
816+
tooltip: 'Bind pandas objects',
817+
file: 'nbextensions/visualpython/src/common/vpBind',
818+
icon: '/nbextensions/visualpython/resource/apps/apps_bind.svg',
819819
color: 3,
820820
},
821821
'reshape': {

src/api_block/createAppsBtn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ define([
9595
case 'profiling':
9696
case 'pdf':
9797
case 'groupby':
98-
case 'merge':
98+
case 'bind':
9999
case 'reshape':
100100
blockContainer.setSelectBlock(null);
101101
blockContainer.createAppsPage(menu, file, config);

src/api_block/init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ define([
130130
/** Apps menu 생성 */
131131
var appsList = [
132132
'import', 'file', 'variable', 'snippets', 'frame', 'subset', 'instance', 'groupby',
133-
'merge', 'reshape', 'chart', 'markdown', 'pdf', 'profiling'
133+
'bind', 'reshape', 'chart', 'markdown', 'pdf', 'profiling'
134134
];
135135
appsList.forEach(menu => {
136136
var app = new CreateAppsBtn(blockContainer, menu);

0 commit comments

Comments
 (0)