-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOM-44732 updating clear_input after antd version update (#311)
Removing the if-statement since after the clear() is called, the "value" attribute comes up as "". Also adding a COMMAND + BACKSPACE command since CONTROL did not work anymore. Having these extra commands does not affect the browser and if they're not needed, just results in a no op.
- Loading branch information
1 parent
28e3a2e
commit 508506c
Showing
3 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ _Get your repo setup using cucu as a test framework_ | |
1. install and start Docker if you haven't already | ||
2. add cucu your `requirements.txt` to get from GH by label (use current label number) | ||
``` | ||
git+ssh://[email protected]/cerebrotech/cucu@0.116.0#egg=cucu | ||
git+ssh://[email protected]/cerebrotech/cucu@0.118.0#egg=cucu | ||
``` | ||
3. install it | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "cucu" | ||
version = "0.117.0" | ||
version = "0.118.0" | ||
license = "MIT" | ||
description = "" | ||
authors = ["Rodney Gomes <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters