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 { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
|
||||||
import { AppModule } from "./app/app.module";
|
import { AppModule } from "./app/app.module";
|
||||||
|
import { initFuzzr } from "./app/fuzzr/fuzzr";
|
||||||
|
|
||||||
platformBrowserDynamic()
|
initFuzzr().then(() => {
|
||||||
|
platformBrowserDynamic()
|
||||||
.bootstrapModule(AppModule)
|
.bootstrapModule(AppModule)
|
||||||
.catch((err) => console.error(err));
|
.catch((err) => console.error(err));
|
||||||
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in new issue