Skip to content

Commit a410092

Browse files
rueckstiesskangas
authored andcommitted
rephrasing of array/document root information
1 parent ad1fbb3 commit a410092

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/field-list/type-list.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ var TypeListItem = View.extend(tooltipMixin, {
101101
evt.stopPropagation();
102102

103103
if (this.active) {
104-
// already active, query building mode
105-
this.toggle('selected');
104+
// @todo rueckstiess: already active, query building mode
105+
// this.toggle('selected');
106106
} else {
107107
// no clicks on Undefined allowed
108108
if (this.model.getId() === 'Undefined') return;

src/minicharts/array-root.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
div(data-hook='viz-container')
22
dl
33
if fieldNames
4-
dt= fieldsPluralized
4+
dt Array of documents with #{fieldsPluralized}
55
dd
66
ul.list-inline
77
each name, idx in fieldNames
88
li= name + (idx < fieldNames.length-1 ? ',' : '')
9-
dt array lengths
9+
dt Array lengths
1010
dd
1111
ul.list-inline
1212
li min: #{min_length},

src/minicharts/document-root.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
div(data-hook='viz-container')
22
dl
3-
dt= fieldsPluralized
3+
dt Document with #{fieldsPluralized}
44
dd
55
ul.list-inline
66
each name, idx in fieldNames

0 commit comments

Comments
 (0)