Skip to content

Commit

Permalink
💄 : add ids to components
Browse files Browse the repository at this point in the history
  • Loading branch information
juwit committed Dec 12, 2019
1 parent f146f0f commit a7a8f25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/resources/templates/module.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,19 @@ <h2>Module {{module.name}}</h2>
<b-form-row>
<b-col cols="11">
<b-form-group label="Name" description="The name of your module">
<b-input v-model="module.name" :state="notEmpty(module.name)"></b-input>
<b-input id="module.name" v-model="module.name" :state="notEmpty(module.name)"></b-input>
<b-form-invalid-feedback>This field is mandatory</b-form-invalid-feedback>
</b-form-group>
</b-col>
<b-col>
<b-form-group label="CLI Version">
<b-form-select v-model="module.cliVersion" :options="versions" :state="notEmpty(module.cliVersion)"></b-form-select>
<b-form-select id="module.cliVersion" v-model="module.cliVersion" :options="versions" :state="notEmpty(module.cliVersion)"></b-form-select>
<b-form-invalid-feedback>This field is mandatory</b-form-invalid-feedback>
</b-form-group>
</b-col>
</b-form-row>
<b-form-group label="Description" description="The description of your module">
<b-input v-model="module.description"></b-input>
<b-input id="module.description" v-model="module.description"></b-input>
</b-form-group>

<b-form-row>
Expand Down

0 comments on commit a7a8f25

Please sign in to comment.