Some fixes

This commit is contained in:
Gregory Schier
2023-03-15 23:33:46 -07:00
parent 41fc3afdc1
commit 98fb87874d
3 changed files with 4 additions and 1 deletions

Binary file not shown.

View File

@@ -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';

View File

@@ -6,7 +6,7 @@ import { VStack } from './core/Stacks';
export default function Workspaces() {
const workspaces = useWorkspaces();
return (
<VStack as="ul" className="p-12">
<VStack as="ul" className="p-12" space={1}>
<Heading>Workspaces</Heading>
{workspaces.map((w) => (
<Button key={w.id} color="gray" to={`/workspaces/${w.id}`}>