Skip to content

Commit e7056a4

Browse files
author
Brian Dillingham
committed
wip
1 parent 7c59ce6 commit e7056a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/js/field.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/js/components/FormField.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<default-field :field="field" :errors="errors">
33
<template slot="field">
44
<select v-model="value" class="w-full form-control form-select" :disabled="disabled">
5-
<option :value="null" v-if="empty == false">Select a {{ field.name.toLowerCase() }}</option>
5+
<option :value="null" v-if="empty == false">Select {{ field.name.toLowerCase() }}</option>
66
<option :value="null" v-if="empty">0 {{ field.name.toLowerCase() }} results</option>
77
<option
88
:key="option.key"

0 commit comments

Comments
 (0)