implement search method

This commit is contained in:
yggverse 2024-07-05 01:31:53 +03:00
parent 5365290ffd
commit 3649f21b52

View file

@ -50,4 +50,25 @@ class History
0
);
}
public function search(
?string $filter = null
): void
{
$this->navbar->filter->setValue(
trim(
strval(
$filter
)
)
);
$this->content->search(
trim(
strval(
$filter
)
)
);
}
}