Added fuzzy search to the editor. Missing proper index handling of the plan display, I'd like to keep original indices on the filtered results
parent
c754789ffb
commit
a81bcc908f
@ -0,0 +1,8 @@
|
||||
import init, { Fuzzr } from 'fuzzr/pkg';
|
||||
|
||||
|
||||
export function initFuzzr() {
|
||||
return init("/fuzzr/pkg/fuzzr_bg.wasm")
|
||||
}
|
||||
|
||||
export { Fuzzr };
|
@ -1,6 +1,10 @@
|
||||
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
|
||||
import { AppModule } from "./app/app.module";
|
||||
import { initFuzzr } from "./app/fuzzr/fuzzr";
|
||||
|
||||
initFuzzr().then(() => {
|
||||
platformBrowserDynamic()
|
||||
.bootstrapModule(AppModule)
|
||||
.catch((err) => console.error(err));
|
||||
});
|
||||
|
||||
|
Loading…
Reference in new issue