Skip to content

Commit c8bc0e4

Browse files
author
minjk-bl
committed
Bind - join label update
1 parent bd9a8a9 commit c8bc0e4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/common/vpBind.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ define([
7272
this.codepreview = undefined;
7373

7474
this.howList = [
75-
{ label: 'Inner', value: 'inner' },
76-
{ label: 'Outer', value: 'outer' },
77-
{ label: 'Left', value: 'left' },
78-
{ label: 'Right', value: 'right' },
79-
{ label: 'Cross', value: 'cross' },
75+
{ label: 'Inner', value: 'inner', desc: 'Inner join' },
76+
{ label: 'Full outer', value: 'outer', desc: 'Full outer join' },
77+
{ label: 'Left outer', value: 'left', desc: 'Left outer join' },
78+
{ label: 'Right outer', value: 'right', desc: 'Right outer join' },
79+
{ label: 'Cross', value: 'cross', desc: 'Cartesian product' },
8080
]
8181
}
8282

@@ -361,7 +361,7 @@ define([
361361
page.appendFormatLine('<select id="{0}">', 'vp_bdHow');
362362
var savedHow = this.state.merge.how;
363363
this.howList.forEach(how => {
364-
page.appendFormatLine('<option value="{0}"{1}>{2}</option>', how.value, savedHow==how.value?' selected':'', how.label);
364+
page.appendFormatLine('<option value="{0}"{1} title="{2}">{3}</option>', how.value, savedHow==how.value?' selected':'', how.desc, how.label);
365365
});
366366
page.appendLine('</select>');
367367
page.appendLine('</div>');

0 commit comments

Comments
 (0)