You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[ ]`modelValue` declares `model` (`true` for standard v-model)
126
126
-[ ]`occupier` is `null`
127
127
-[ ] All `id`s are unique; CSS classes use `className`, not `class`
128
-
-[ ] App / page IDs are integers (`918`, not `"918"`)
128
+
-[ ]**App schema**`id` and `meta.appId` are integers (`918`, not `"918"`) — apps.js persists `meta.appId` as string internally, keep the DSL integer
129
+
-[ ]**Page**`app` reference is a string (`"918"`, not `918`) — pages.js queries with `appId.toString()`; a numeric `app` won't be found by `list()`. Page's own `id` is a NanoID string assigned by the server
`⚠️ WARNING: 'app' field should be integer, got: ${pyTypeName(appField)} (will be coerced)`
87
+
`⚠️ WARNING: 'app' field should be string, got: ${typeName(appField)} (pages.js queries with appId.toString(); numeric app ref won't be found by list())`
92
88
);
93
89
}
94
90
}
@@ -142,7 +138,7 @@ function checkClassNameUsage(filePath) {
0 commit comments