summaryrefslogtreecommitdiffstats
path: root/src/components/data_table.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/data_table.rs')
-rw-r--r--src/components/data_table.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/data_table.rs b/src/components/data_table.rs
index 650e14a5..5fb5cb2c 100644
--- a/src/components/data_table.rs
+++ b/src/components/data_table.rs
@@ -155,9 +155,9 @@ mod test {
}
impl DataToCell<&'static str> for TestType {
- fn to_cell<'a>(
- &'a self, _column: &&'static str, _calculated_width: u16,
- ) -> Option<tui::text::Text<'a>> {
+ fn to_cell(
+ &self, _column: &&'static str, _calculated_width: u16,
+ ) -> Option<tui::text::Text<'_>> {
None
}