jupyter-ijavascript-utils 1.28.0 → 1.28.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +1 -1
- package/package.json +1 -1
- package/src/TableGenerator.js +2 -2
package/Dockerfile
CHANGED
package/package.json
CHANGED
package/src/TableGenerator.js
CHANGED
|
@@ -197,7 +197,7 @@ class TableGenerator {
|
|
|
197
197
|
* Max height (css) of the table when rendered. (Defaults to 50vh)
|
|
198
198
|
* @type {String}
|
|
199
199
|
*/
|
|
200
|
-
#height =
|
|
200
|
+
#height = '50vh';
|
|
201
201
|
|
|
202
202
|
/**
|
|
203
203
|
* Optional labels for columns by the property Name
|
|
@@ -317,7 +317,7 @@ class TableGenerator {
|
|
|
317
317
|
this.#fetch = null;
|
|
318
318
|
this.#filterFn = null;
|
|
319
319
|
this.#formatterFn = null;
|
|
320
|
-
this.#height =
|
|
320
|
+
this.#height = '50vh';
|
|
321
321
|
this.#labels = {};
|
|
322
322
|
this.#limit = 0;
|
|
323
323
|
this.#offset = 0;
|