make chef.help emulate search function in UI. Didnt extract search logic from web as it is fairly entwined.

This commit is contained in:
d98762625 2018-09-04 09:33:49 +01:00
parent 3466f4e452
commit 63a23e4dcc
5 changed files with 80 additions and 30 deletions

View file

@ -20,7 +20,7 @@ class SyncDish extends Dish {
/** */
constructor(inputOrDish=null, type=null) {
super(inputOrDish);
// Add operations to make it composable
for (const op in ops) {
this[op] = () => ops[op](this.value);
@ -174,8 +174,4 @@ class SyncDish extends Dish {
}
}
export default SyncDish;