Skip to content

Commit

Permalink
build(deps-dev): bump prettier from 3.3.3 to 3.4.0 (#1645)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dominik Jelinek <[email protected]>
  • Loading branch information
dependabot[bot] and djelinek authored Nov 26, 2024
1 parent d768f00 commit 41273a5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/Input.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,5 +128,5 @@ Page object retrieved when calling `getAction` or `getActions` representing Quic
```typescript
// get label
const label = await button.getLabel();
const label1 = await((await buttons).at(1)).getLabel();
const label1 = await (await buttons).at(1).getLabel();
```
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lerna": "^8.1.9",
"prettier": "3.3.3",
"prettier": "3.4.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export abstract class ChannelView extends ElementWithContextMenu {
* View with channel selection and text area
*/
export abstract class TextView extends ChannelView {
protected declare actionsLabel: string;
declare protected actionsLabel: string;

/**
* Get all text from the currently open channel
Expand Down

0 comments on commit 41273a5

Please sign in to comment.