Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bollwyvl committed May 23, 2021
1 parent bc3f0bd commit ed7556e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/notebookButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ export class TourButton extends ReactWidget {
const errors = this._manager.getNotebookValidationErrors(this._notebook);

if (errors.length) {
title = `${this.translator.__('Tour Validation Errors')}: ${errors.length}`;
title = `${this.translator.__('Tour Validation Errors')}: ${
errors.length
}`;
icon = errorTourIcon;
}

Expand All @@ -99,7 +101,9 @@ export class TourButton extends ReactWidget {
{tourIds.length ? (
<option value="ALL">{trans.__('Run all Tours')}</option>
) : (
<optgroup label={trans.__('No Tours found in this Notebook')}></optgroup>
<optgroup
label={trans.__('No Tours found in this Notebook')}
></optgroup>
)}
{tourIds.length ? (
<optgroup label={trans.__('Notebook Tours')}>
Expand Down

0 comments on commit ed7556e

Please sign in to comment.