Skip to content

Commit

Permalink
Specify missing type
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesBHuff committed Dec 15, 2023
1 parent 0b25b53 commit 9dc5de2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/src/content/color-inputs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<template>
<form @submit.prevent="onSubmit">
<div v-for="id of ids" :key="id" >
<HexInput class="HexInput" :id="id" @input="value => onInput(id, value)" v-model="inputs[id]"/>
<HexInput class="HexInput" :id="id" @input="(value: RGBColor) => onInput(id, value)" v-model="inputs[id]"/>
<HSLInput class="HSLInput" :id="id"/>
</div>
</form>
Expand Down

0 comments on commit 9dc5de2

Please sign in to comment.