Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Mar 20, 2020
1 parent cf6be04 commit 406c20b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export interface ILineUpOptions {
* flag whether to shows filter previews as soon as the user changes the filter in the dialog
* @default ['filter', 'vis']
*/
livePreviws: ('search' | 'filter' | 'vis')[];
livePreviews: ('search' | 'filter' | 'vis')[];

/**
* option to specify the default slope graph mode
Expand Down Expand Up @@ -209,7 +209,7 @@ export function defaultOptions(): ITaggleOptions {
defaultSlopeGraphMode: 'item',
overviewMode: false,

livePreviws: ['filter', 'vis'],
livePreviews: ['filter', 'vis'],
onDialogBackgroundClick: 'cancel',

rowHeight: 18,
Expand Down
2 changes: 1 addition & 1 deletion src/ui/EngineRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default class EngineRenderer extends AEventDispatcher {

const dialogManager = new DialogManager({
doc: parent.ownerDocument!,
livePreviews: options.livePreviws,
livePreviews: options.livePreviews,
onDialogBackgroundClick: options.onDialogBackgroundClick,
});

Expand Down

0 comments on commit 406c20b

Please sign in to comment.