Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating the correct description of the property #18026

Merged
merged 7 commits into from
Apr 17, 2019
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1416,7 +1416,7 @@ export namespace Components {

interface IonFabList {
/**
* If `true`, the fab list will be show all fab buttons in the list.
* If `true`, the fab list will show all fab buttons in the list.
*/
'activated': boolean;
/**
Expand All @@ -1426,7 +1426,7 @@ export namespace Components {
}
interface IonFabListAttributes extends StencilHTMLAttributes {
/**
* If `true`, the fab list will be show all fab buttons in the list.
* If `true`, the fab list will show all fab buttons in the list.
*/
'activated'?: boolean;
/**
Expand Down
2 changes: 1 addition & 1 deletion core/src/components/fab-list/fab-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class FabList implements ComponentInterface {
@Element() el!: HTMLIonFabElement;

/**
* If `true`, the fab list will be show all fab buttons in the list.
* If `true`, the fab list will show all fab buttons in the list.
*/
@Prop() activated = false;

Expand Down
2 changes: 1 addition & 1 deletion core/src/components/fab-list/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default Example

| Property | Attribute | Description | Type | Default |
| ----------- | ----------- | ------------------------------------------------------------------- | --------------------------------------- | ---------- |
| `activated` | `activated` | If `true`, the fab list will be show all fab buttons in the list. | `boolean` | `false` |
| `activated` | `activated` | If `true`, the fab list will show all fab buttons in the list. | `boolean` | `false` |
| `side` | `side` | The side the fab list will show on relative to the main fab button. | `"bottom" \| "end" \| "start" \| "top"` | `'bottom'` |


Expand Down