-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Space sensitive syntax for Create Connector #1217
* added trim to json config * refactored new tests * refactored edit tests * fix new test act warning * first working tests * fixed textarea props * resolved discussions Co-authored-by: Ekaterina Petrova <epetrova@provectus.com> Co-authored-by: Roman Zabaluev <rzabaluev@provectus.com>
- Loading branch information
1 parent
8639403
commit 2b79fee
Showing
8 changed files
with
89 additions
and
656 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
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
209 changes: 0 additions & 209 deletions
209
kafka-ui-react-app/src/components/Connect/Edit/__tests__/__snapshots__/Edit.spec.tsx.snap
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
kafka-ui-react-app/src/components/Connect/New/New.styled.ts
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import styled from 'styled-components'; | ||
|
||
export const NewConnectFormStyled = styled.form` | ||
padding: 0 16px 16px; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 16px; | ||
& > button:last-child { | ||
align-self: flex-start; | ||
} | ||
`; |
Oops, something went wrong.