Skip to content

Commit

Permalink
nit #209
Browse files Browse the repository at this point in the history
  • Loading branch information
chrabyrd committed Feb 22, 2025
1 parent d16a5be commit 5b6b7f6
Show file tree
Hide file tree
Showing 4 changed files with 201 additions and 200 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async function getSectionValue() {
try {
return await fetchLingoResourcePartial(
props.graphSlug,
props.resourceInstanceId,
props.resourceInstanceId as string,
props.nodeGroupAlias,
);
} catch (error) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,11 @@ function reset() {
<div class="editor-content">
<component
:is="props.component"
v-bind="{ mode: EDIT, tileId: props.tileId }"
:mode="EDIT"
:tile-id="props.tileId"
:graph-slug="props.graphSlug"
:node-group-alias="props.nodeGroupAlias"
:resource-instance-id="props.resourceInstanceId"
/>
</div>
<div>
Expand Down
Loading

0 comments on commit 5b6b7f6

Please sign in to comment.