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
Original file line number Diff line number Diff line change
Expand Up @@ -144,17 +144,37 @@ const DryRunJobPanel = (props: Props) => {
className={styles.tab}
data-testid="transformations-tab"
>
<span className={styles.tabName}>Transformations</span>
<EuiToolTip
content={(
<EuiText color="subdued" size="s">
Displays the results of the transformations you defined. The data is presented in JSON format.
<br />
No data is written to the target database.
</EuiText>
)}
data-testid="transformation-output-tooltip"
>
<span className={styles.tabName}>Transformation output</span>
</EuiToolTip>
</EuiTab>
<EuiTab
isSelected={selectedTab === PipelineJobsTabs.Output}
onClick={() => handleChangeTab(PipelineJobsTabs.Output)}
className={styles.tab}
data-testid="output-tab"
>
<>
<span className={styles.tabName}>Output</span>
</>
<EuiToolTip
content={(
<EuiText color="subdued" size="s">
Displays the list of Redis commands that will be generated based on your job details.
<br />
No data is written to the target database.
</EuiText>
)}
data-testid="job-output-tooltip"
>
<span className={styles.tabName}>Job output</span>
</EuiToolTip>
</EuiTab>
</EuiTabs>
), [selectedTab, isFullScreen])
Expand Down Expand Up @@ -223,7 +243,6 @@ const DryRunJobPanel = (props: Props) => {
</EuiFlexItem>
</EuiFlexGroup>
<div className={cx(styles.tabsWrapper, styles.codeLabel)}>
<EuiText>Results</EuiText>
{isSelectAvailable && (
<EuiSuperSelect
options={targetOptions}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ $animation-duration: 300ms;

.codeLabel {
display: flex;
justify-content: space-between;
justify-content: flex-end;
align-items: center;
font: normal normal normal 14px/17px Graphik, sans-serif;
height: 28px;
Expand Down
Loading