Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Mar 15, 2023
1 parent a697877 commit f40e881
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,10 @@ const plugin: JupyterFrontEndPlugin<void> = {
const includeTokenCheckbox = document.createElement('input');
includeTokenCheckbox.type = 'checkbox';
const tokenLabel = document.createElement('label');
tokenLabel.appendChild(includeTokenCheckbox)
tokenLabel.appendChild(document.createTextNode(trans.__('Include token in URL')));
tokenLabel.appendChild(includeTokenCheckbox);
tokenLabel.appendChild(
document.createTextNode(trans.__('Include token in URL'))
);
dialogBody.appendChild(tokenLabel);

// when checkbox changes, toggle URL and message
Expand Down

0 comments on commit f40e881

Please sign in to comment.