Skip to content

Commit

Permalink
fix more types
Browse files Browse the repository at this point in the history
  • Loading branch information
ascott18 committed Dec 3, 2024
1 parent cd5e9cd commit 46533ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/coalesce-vue-vuetify3/src/components/input/c-input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ function render() {
addHandler(data, "update:modelValue", (v: any) =>
emit("update:modelValue", v)
);
return h(CSelectManyToMany<any>, data, slots);
return h(CSelectManyToMany<any, any>, data, slots);
} else if (valueMeta.itemType.type == "model") {
data.model = props.model;
data.for = props.for;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ type InheritedSlots<
setup
generic="
TModel extends Model,
TFor extends ForSpec<TModel, (ModelCollectionNavigationProperty & { manyToMany: {} })> "
TFor extends ForSpec<TModel, (ModelCollectionNavigationProperty & { manyToMany: {} })>"
>
import { ForSpec, useMetadataProps } from "../c-metadata-component";
import {
Expand Down

0 comments on commit 46533ac

Please sign in to comment.