make update action by item id

This commit is contained in:
yggverse 2024-10-15 08:45:44 +03:00
parent c92a5406f5
commit 6c4137f2b6
7 changed files with 48 additions and 41 deletions

View file

@ -106,8 +106,8 @@ impl Window {
self.tab.pin();
}
pub fn update(&self) {
self.tab.update();
pub fn update(&self, id: &str) {
self.tab.update(id);
}
pub fn clean(&self, transaction: &Transaction, app_browser_id: &i64) -> Result<(), String> {