-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(frontend): UI updates to test trigger tab (#3354)
- Loading branch information
Showing
25 changed files
with
139 additions
and
172 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
This file was deleted.
Oops, something went wrong.
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import {Form} from 'antd'; | ||
import {Editor} from 'components/Inputs'; | ||
import {SupportedEditors} from 'constants/Editor.constants'; | ||
|
||
const VariableName = () => ( | ||
<Form.Item | ||
name="id" | ||
rules={[{required: true, message: 'Please enter a valid variable name'}]} | ||
style={{marginBottom: 0}} | ||
> | ||
<Editor type={SupportedEditors.Interpolation} placeholder="Enter variable name" /> | ||
</Form.Item> | ||
); | ||
|
||
export default VariableName; |
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,10 +1,11 @@ | ||
import URL from './URL/URL'; | ||
import Auth from './Auth/Auth'; | ||
import SSL from './SSL/SSL'; | ||
import Headers from './Headers/Headers'; | ||
import KeyValueList from './KeyValueList/KeyValueList'; | ||
import Metadata from './Metadata/Metadata'; | ||
import MultiURL from './MultiURL/MultiURL'; | ||
import PlainAuth from './PlainAuth/PlainAuth'; | ||
import KeyValueList from './KeyValueList/KeyValueList'; | ||
import SSL from './SSL/SSL'; | ||
import URL from './URL/URL'; | ||
import VariableName from './VariableName/VariableName'; | ||
|
||
export {URL, Auth, SSL, Headers, Metadata, MultiURL, PlainAuth, KeyValueList}; | ||
export {URL, Auth, SSL, Headers, Metadata, MultiURL, PlainAuth, KeyValueList, VariableName}; |
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
4 changes: 2 additions & 2 deletions
4
web/src/components/TestPlugins/EntryPoint/TraceID/TraceID.tsx
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,5 +1,5 @@ | ||
import VariableNameForm from 'components/TestPlugins/Forms/TraceID/TraceID'; | ||
import {VariableName} from 'components/Fields'; | ||
|
||
const TraceID = () => <VariableNameForm />; | ||
const TraceID = () => <VariableName />; | ||
|
||
export default TraceID; |
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
Oops, something went wrong.