Aitthi Arsa

Results 3 comments of Aitthi Arsa

Change code in `ui-carousel.component.ts` ``` ... import { Observable } from 'rxjs/Observable'; import { Subject } from 'rxjs/Subject'; import { Subscription } from 'rxjs/Subscription'; import 'rxjs/add/operator/throttleTime'; ... this.subscriptions.add(this.nextSubject.throttleTime(this.speed).subscribe(() => {...

Try using call_async. ```rs pub async fn call_tf(callback: ThreadsafeFunction) { let js_res = match callback.call_async::(Ok(())).await { Ok(res) => res, Err(e) => { println!("Error: {}", e); 0_i32 } }; println!("js_res: {}",...

You can temporarily fix it by overriding the dropdown style with: ```css .ant-select-dropdown, .ant-dropdown { position: initial !important; } ``` This is just a workaround for now until the official...