Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Oct 24, 2024
1 parent e32f185 commit 95d8f12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tree-extension/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ const fileBrowserSettings: JupyterFrontEndPlugin<void> = {
for (key in defaultFileBrowserConfig) {
const value = settings.get(key).user as boolean;
// only set the setting if it is defined by the user
if (value === undefined) {
if (value !== undefined) {
browser[key] = value;
}
}
Expand Down

0 comments on commit 95d8f12

Please sign in to comment.