Skip to content

Commit

Permalink
Fix Typescript compile errors in selectionChanged and `parameterCan…
Browse files Browse the repository at this point in the history
…ged` of ranking views (#191)

* Fix TS errors ranking views

The return value of `selectionChanged` and `parameterCanged` has been typed/changed in datavisyn/tdp_core#725

* Fix data type select in welcome tour (#192)
  • Loading branch information
thinkh authored Jul 25, 2022
1 parent b346caa commit 78f859a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/tours/WelcomeTour.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/tours/WelcomeTour.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/tours/WelcomeTour.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class WelcomeTour {
placement: 'centered',
html: `As data type, we choose <i>'Relative Copy Number'</i>`,
postAction: () => {
TourUtils.setValueAndTrigger('.col > select', 'copy_number-relativecopynumber', 'change');
TourUtils.setValueAndTrigger('.modal.show .col > select', 'copy_number-relativecopynumber', 'change');
},
},
{
Expand Down

0 comments on commit 78f859a

Please sign in to comment.