Skip to content

Commit

Permalink
Make condition value required
Browse files Browse the repository at this point in the history
  • Loading branch information
simshaun committed Aug 26, 2024
1 parent 150e42b commit d61d3e8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/EditMonitorCondition.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,14 @@
</option>
</select>

<input v-model="model.value" type="text" class="form-control" :aria-label="$t('conditionValuePlaceholder')" data-testid="condition-value">
<input
v-model="model.value"
type="text"
class="form-control"
:aria-label="$t('conditionValuePlaceholder')"
data-testid="condition-value"
required
/>
</div>
</template>

Expand Down

0 comments on commit d61d3e8

Please sign in to comment.