From 5d40c93db735b55d9022b5a102dcc987b3ad5b75 Mon Sep 17 00:00:00 2001 From: linonetwo Date: Thu, 9 Feb 2023 18:08:42 +0800 Subject: [PATCH] fix: adapt latest octobase id type --- client-app/src-tauri/src/commands/workspace.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-app/src-tauri/src/commands/workspace.rs b/client-app/src-tauri/src/commands/workspace.rs index 66173089b5..ac07dc66f8 100644 --- a/client-app/src-tauri/src/commands/workspace.rs +++ b/client-app/src-tauri/src/commands/workspace.rs @@ -21,7 +21,7 @@ pub async fn get_workspaces<'s>( .lock() .await .metadata_db - .get_user_workspaces(parameters.user_id) + .get_user_workspaces(parameters.user_id.to_string()) .await { Ok(user_workspaces) => Ok(GetWorkspacesResult { @@ -66,7 +66,7 @@ pub async fn create_workspace<'s>( .lock() .await .metadata_db - .create_normal_workspace(parameters.user_id) + .create_normal_workspace(parameters.user_id.to_string()) .await; match new_workspace_result { Ok(new_workspace) => {