Skip to content

Commit

Permalink
docs(fab-list): update the activated description (ionic-team#18026)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikmahes authored and kiku-jw committed May 16, 2019
1 parent 2012f47 commit ae80396
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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

0 comments on commit ae80396

Please sign in to comment.