Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 @@ -2612,7 +2612,7 @@ export namespace Components {
*/
"cancelButtonIcon": string;
/**
* Set the the cancel button text. Only applies to `ios` mode.
* Set the cancel button text. Only applies to `ios` mode.
*/
"cancelButtonText": string;
/**
Expand Down Expand Up @@ -7443,7 +7443,7 @@ declare namespace LocalJSX {
*/
"cancelButtonIcon"?: string;
/**
* Set the the cancel button text. Only applies to `ios` mode.
* Set the cancel button text. Only applies to `ios` mode.
*/
"cancelButtonText"?: string;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ export class PickerColumnCmp implements ComponentInterface {
const colEl = this.optsEl;
if (colEl) {
// DOM READ
// We perfom a DOM read over a rendered item, this needs to happen after the first render or after the the column has changed
// We perfom a DOM read over a rendered item, this needs to happen after the first render or after the column has changed
this.optHeight = colEl.firstElementChild ? colEl.firstElementChild.clientHeight : 0;
}
this.refresh(forceRefresh, animated);
Expand Down
2 changes: 1 addition & 1 deletion core/src/components/searchbar/searchbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class Searchbar implements ComponentInterface {
@Prop() cancelButtonIcon = config.get('backButtonIcon', arrowBackSharp) as string;

/**
* Set the the cancel button text. Only applies to `ios` mode.
* Set the cancel button text. Only applies to `ios` mode.
*/
@Prop() cancelButtonText = 'Cancel';

Expand Down
2 changes: 1 addition & 1 deletion docs/core/testing/usage-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ Instead, use the [Update Reference Screenshots GitHub Action](https://github.com
3. Leave the input field blank.
4. Click **Run workflow**.

This workflow will re-run all of the the screenshot tests. Instead of failing any tests with mismatched screenshots, it will take new ground truth screenshots. These ground truth screenshots will be pushed as a single commit to your branch once the workflow is completed.
This workflow will re-run all of the screenshot tests. Instead of failing any tests with mismatched screenshots, it will take new ground truth screenshots. These ground truth screenshots will be pushed as a single commit to your branch once the workflow is completed.

If you want to update ground truths for a specific test, you can pass the test file path as an input to the workflow. This is useful when working on a specific component.

Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/components/IonRouterContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export type UseIonRouterResult = {
*/
goBack(animationBuilder?: AnimationBuilder): void;
/**
* Determines if there are any additional routes in the the Router's history. However, routing is not prevented if the browser's history has more entries. Returns true if more entries exist, false if not.
* Determines if there are any additional routes in the Router's history. However, routing is not prevented if the browser's history has more entries. Returns true if more entries exist, false if not.
*/
canGoBack(): boolean;
routeInfo: RouteInfo;
Expand Down
Loading