Me when formatting problems
This commit is contained in:
@@ -7,4 +7,4 @@ export default function () {
|
|||||||
message="Your request is now being processed; this normally takes 1-2 weeks."
|
message="Your request is now being processed; this normally takes 1-2 weeks."
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,4 +31,4 @@ export default function () {
|
|||||||
</Card>
|
</Card>
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -116,7 +116,8 @@ export default function () {
|
|||||||
data storage provider.
|
data storage provider.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<strong>Google, LLC. (Mountain View, CA)</strong>: Push notifications (if you use the app).
|
<strong>Google, LLC. (Mountain View, CA)</strong>: Push notifications
|
||||||
|
(if you use the app).
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<strong>Mailgun Technologies, Inc. (San Antonio, TX)</strong>: Email
|
<strong>Mailgun Technologies, Inc. (San Antonio, TX)</strong>: Email
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
import {
|
import {
|
||||||
Card,
|
Card,
|
||||||
|
CardBody,
|
||||||
CardFooter,
|
CardFooter,
|
||||||
|
CardHeader,
|
||||||
Container,
|
Container,
|
||||||
Divider,
|
Divider,
|
||||||
Heading,
|
Heading,
|
||||||
@@ -51,16 +53,14 @@ export default function () {
|
|||||||
borderRadius="36px"
|
borderRadius="36px"
|
||||||
src={`/files/${project.image}`}
|
src={`/files/${project.image}`}
|
||||||
/>
|
/>
|
||||||
<Stack mb="8" mt="6" spacing="3">
|
<CardHeader>
|
||||||
<b>
|
{project.name} ({project.timespan})
|
||||||
<Heading size="md">
|
</CardHeader>
|
||||||
{project.name} ({project.timespan})
|
<CardBody>
|
||||||
</Heading>
|
|
||||||
</b>
|
|
||||||
<Text>Time Span: {project.timespan}</Text>
|
<Text>Time Span: {project.timespan}</Text>
|
||||||
<br />
|
<br />
|
||||||
<Text>{project.description}</Text>
|
<Text>{project.description}</Text>
|
||||||
</Stack>
|
</CardBody>
|
||||||
<Divider />
|
<Divider />
|
||||||
<CardFooter gap="16px" justifyContent="center">
|
<CardFooter gap="16px" justifyContent="center">
|
||||||
{project.work_link ? (
|
{project.work_link ? (
|
||||||
|
|||||||
@@ -19,5 +19,7 @@ export async function onRequestPost(context: RequestContext) {
|
|||||||
|
|
||||||
await context.env.D1.prepare(
|
await context.env.D1.prepare(
|
||||||
"INSERT INTO game_mod_notes (content, created_at, created_by, id, target) VALUES (?, ?, ?, ?, ?);",
|
"INSERT INTO game_mod_notes (content, created_at, created_by, id, target) VALUES (?, ?, ?, ?, ?);",
|
||||||
).bind(content, Date.now(), context.data.current_user.id, id, target).first();
|
)
|
||||||
|
.bind(content, Date.now(), context.data.current_user.id, id, target)
|
||||||
|
.first();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user