This commit is contained in:
Gregory Schier
2024-02-17 15:20:13 -08:00
parent 2328973de5
commit ce730f3dbe
3 changed files with 1239 additions and 713 deletions

1947
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1356,7 +1356,7 @@ fn is_dev() -> bool {
} }
fn create_window(handle: &AppHandle, url: Option<&str>) -> Window { fn create_window(handle: &AppHandle, url: Option<&str>) -> Window {
// let app_menu = window_menu::os_default("Yaak".to_string().as_str()); let app_menu = window_menu::os_default("Yaak".to_string().as_str());
let window_num = handle.windows().len(); let window_num = handle.windows().len();
let window_id = format!("wnd_{}", window_num); let window_id = format!("wnd_{}", window_num);
let mut win_builder = tauri::WindowBuilder::new( let mut win_builder = tauri::WindowBuilder::new(

View File

@@ -51,6 +51,9 @@ export const SidebarActions = memo(function SidebarActions() {
label: 'GRPC Call', label: 'GRPC Call',
onSelect: () => createGrpcRequest.mutate({}), onSelect: () => createGrpcRequest.mutate({}),
}, },
{
type: 'separator',
},
{ {
key: 'create-folder', key: 'create-folder',
label: 'Folder', label: 'Folder',