Skip to content

Commit 28a6ef8

Browse files
committed
fix(checkbox): use camelCase and remove id
1 parent 46d2062 commit 28a6ef8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

static/usage/v8/checkbox/helper-error/angular/example_component_html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```html
22
<form [formGroup]="myForm" (ngSubmit)="onSubmit()">
3-
<ion-checkbox formControlName="agree" helper-text="This needs to be checked" error-text="This field is required">
3+
<ion-checkbox formControlName="agree" helperText="This needs to be checked" errorText="This field is required">
44
I agree to the terms and conditions
55
</ion-checkbox>
66

static/usage/v8/checkbox/helper-error/vue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```html
22
<template>
3-
<form id="my-form" @submit.prevent="submit">
3+
<form @submit.prevent="submit">
44
<ion-checkbox
55
v-model="agree"
66
helper-text="This needs to be checked"

0 commit comments

Comments
 (0)