]> git.proxmox.com Git - ui/proxmox-yew-widget-toolkit.git/commitdiff
cleanup: use IntoOptionalKey trait
authorDietmar Maurer <dietmar@proxmox.com>
Thu, 21 Nov 2024 09:53:19 +0000 (10:53 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Thu, 21 Nov 2024 09:53:19 +0000 (10:53 +0100)
Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
src/widget/data_table/data_table.rs

index 157114cc3b0cfec23bf882771817ffb2fb1c0653..27d66e895de3d8871aca14eb34e4bd4962ddda84 100644 (file)
@@ -255,8 +255,8 @@ impl<S: DataStore> DataTable<S> {
     }
 
     /// Builder style method to set the yew `key` property.
-    pub fn key(mut self, key: impl Into<Key>) -> Self {
-        self.key = Some(key.into());
+    pub fn key(mut self, key: impl IntoOptionalKey) -> Self {
+        self.key = key.into_optional_key();
         self
     }