From 98fb87874d3d89dd64eec8ddf7c03f7430b88f73 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Wed, 15 Mar 2023 23:33:46 -0700 Subject: [PATCH] Some fixes --- src-tauri/icons/icon.icns | Bin 616124 -> 616124 bytes .../20230316062901_model-fields.sql | 3 +++ src-web/components/Workspaces.tsx | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 src-tauri/migrations/20230316062901_model-fields.sql diff --git a/src-tauri/icons/icon.icns b/src-tauri/icons/icon.icns index 227dff621370a04cfa89795ebae637bb2831440b..0c169d5f5d964f2e9c59f8fb941b3504fa1a3cb9 100644 GIT binary patch delta 122 zcmdmUR&~!=RgTQ$ykZ8acOxY~Pl|$;JW{G&Evhkno-UQHM=Qc8{YR zd2_cXvav7W+x{toEq`uvn8fxl3C6F>+JoiTw+G8{09ii!8G)Dyh?#+yWxLOQ*7>5xugWUw delta 93 zcmdmUR&~!=RgTQ$ykZ8QFa wZscOK*5`f#@2@?hS6%Y)_nvdw7`d2=@l*s!qx04yCVO#lD@ diff --git a/src-tauri/migrations/20230316062901_model-fields.sql b/src-tauri/migrations/20230316062901_model-fields.sql new file mode 100644 index 00000000..14ef6f90 --- /dev/null +++ b/src-tauri/migrations/20230316062901_model-fields.sql @@ -0,0 +1,3 @@ +ALTER TABLE http_responses ADD COLUMN model TEXT DEFAULT 'http_response'; +ALTER TABLE http_requests ADD COLUMN model TEXT DEFAULT 'http_request'; +ALTER TABLE workspaces ADD COLUMN model TEXT DEFAULT 'workspace'; diff --git a/src-web/components/Workspaces.tsx b/src-web/components/Workspaces.tsx index be28a490..375fa79b 100644 --- a/src-web/components/Workspaces.tsx +++ b/src-web/components/Workspaces.tsx @@ -6,7 +6,7 @@ import { VStack } from './core/Stacks'; export default function Workspaces() { const workspaces = useWorkspaces(); return ( - + Workspaces {workspaces.map((w) => (