Skip to content

Commit

Permalink
Fix type error with tomselect downgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Dec 18, 2022
1 parent 7387fe7 commit afbdbd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/panes/cfg-view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export class Cfg extends Pane<CfgState> {
plugins: ['dropdown_input'],
sortField: 'title',
onChange: e => {
this.selectFunction(e as string);
this.selectFunction(e as unknown as string);
},
});
this.state = state;
Expand Down

0 comments on commit afbdbd6

Please sign in to comment.