Skip to content

Commit d2c6b1c

Browse files
committed
Adapt to allow --cfg erase_components usage
1 parent db231ee commit d2c6b1c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/table_content.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,10 @@ pub fn TableContent<Row, DataP, Err, ClsP, ScrollEl, ScrollM>(
188188
where
189189
Row: TableRow<ClassesProvider = ClsP> + Clone + Send + Sync + 'static,
190190
DataP: TableDataProvider<Row, Err> + 'static,
191-
Err: Debug,
191+
Err: Debug + 'static,
192192
ClsP: TableClassesProvider + Send + Sync + Copy + 'static,
193-
ScrollEl: IntoElementMaybeSignal<web_sys::Element, ScrollM>,
194-
ScrollM: ?Sized,
193+
ScrollEl: IntoElementMaybeSignal<web_sys::Element, ScrollM> + 'static,
194+
ScrollM: ?Sized + 'static,
195195
{
196196
let on_change = StoredValue::new(on_change);
197197
let rows = Rc::new(RefCell::new(rows));

0 commit comments

Comments
 (0)