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 bc7566f commit 32fbc36Copy full SHA for 32fbc36
packages/controls/src/widget_bool.ts
@@ -301,7 +301,7 @@ export class ValidView extends DescriptionView {
301
/**
302
* Called when view is rendered.
303
*/
304
- render() {
+ render(): void {
305
super.render();
306
this.el.classList.add('jupyter-widgets');
307
this.el.classList.add('widget-valid');
@@ -322,7 +322,7 @@ export class ValidView extends DescriptionView {
322
* Called when the model is changed. The model may have been
323
* changed by another view or by a state update from the back-end.
324
325
- update() {
+ update(): void {
326
this.el.classList.remove('mod-valid');
327
this.el.classList.remove('mod-invalid');
328
this.icon.classList.remove('fa-check');
0 commit comments