Skip to content

Commit 1024f69

Browse files
chore: wip
1 parent 9cc8f57 commit 1024f69

File tree

11 files changed

+4498
-4786
lines changed

11 files changed

+4498
-4786
lines changed

storage/framework/core/components/calendar/src/components/Theming.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ async function handleCopyCode() {
5454
Dark
5555
</button>
5656
</div>
57-
<div class="code-block group relative">
57+
<div class="group code-block relative">
5858
<Highlight
5959
language="javascript"
6060
class-name="rounded-md text-xs"

storage/framework/core/orm/src/utils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1258,7 +1258,7 @@ export async function generateModelString(
12581258
const model = await query.executeTakeFirst()
12591259
12601260
if (model === undefined)
1261-
throw new Error(JSON.stringify({ status: 404, message: No model results found for query }))
1261+
throw new Error(JSON.stringify({ status: 404, message: 'No model results found for query' }))
12621262
12631263
cache.getOrSet(\`${formattedModelName}:\${id}\`, JSON.stringify(model))
12641264
@@ -1504,7 +1504,7 @@ export async function generateModelString(
15041504
const model = await this.query.selectAll().executeTakeFirst()
15051505
15061506
if (model === undefined)
1507-
throw new Error(JSON.stringify({ status: 404, message: No model results found for query }))
1507+
throw new Error(JSON.stringify({ status: 404, message: 'No model results found for query' }))
15081508
15091509
return this.parseResult(new ${modelName}Model(model))
15101510
}

0 commit comments

Comments
 (0)