Skip to content

Commit

Permalink
chore: fix pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lauramargar committed Jun 4, 2024
1 parent 5b8406e commit d44fe4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<div v-if="clickPartialQueryButton" class="text-content">
<span>The user has clicked on a partial query button!!</span>
<button @click="restartParialQueryButton" class="text-button">return</button>
<button @click="restartParialQueryButton" class="text-button">Restart</button>
</div>
</template>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
* @internal
*/
const createEventMetadata = (): Omit<WireMetadata, 'moduleName'> => ({
target: partialButtonEl.value as HTMLElement,
target: partialButtonEl.value,
feature: 'partial_result'
});
Expand All @@ -66,8 +66,8 @@
};
return {
emitEvents,
partialButtonEl
partialButtonEl,
emitEvents
};
}
});
Expand Down

0 comments on commit d44fe4e

Please sign in to comment.