File tree Expand file tree Collapse file tree 2 files changed +25
-6
lines changed
redisinsight/ui/src/pages/rdi/pipeline-management/components/jobs-panel Expand file tree Collapse file tree 2 files changed +25
-6
lines changed Original file line number Diff line number Diff line change @@ -144,17 +144,37 @@ const DryRunJobPanel = (props: Props) => {
144
144
className = { styles . tab }
145
145
data-testid = "transformations-tab"
146
146
>
147
- < span className = { styles . tabName } > Transformations</ span >
147
+ < EuiToolTip
148
+ content = { (
149
+ < EuiText color = "subdued" size = "s" >
150
+ Displays the results of the transformations you defined. The data is presented in JSON format.
151
+ < br />
152
+ No data is written to the target database.
153
+ </ EuiText >
154
+ ) }
155
+ data-testid = "transformation-output-tooltip"
156
+ >
157
+ < span className = { styles . tabName } > Transformation output</ span >
158
+ </ EuiToolTip >
148
159
</ EuiTab >
149
160
< EuiTab
150
161
isSelected = { selectedTab === PipelineJobsTabs . Output }
151
162
onClick = { ( ) => handleChangeTab ( PipelineJobsTabs . Output ) }
152
163
className = { styles . tab }
153
164
data-testid = "output-tab"
154
165
>
155
- < >
156
- < span className = { styles . tabName } > Output</ span >
157
- </ >
166
+ < EuiToolTip
167
+ content = { (
168
+ < EuiText color = "subdued" size = "s" >
169
+ Displays the list of Redis commands that will be generated based on your job details.
170
+ < br />
171
+ No data is written to the target database.
172
+ </ EuiText >
173
+ ) }
174
+ data-testid = "job-output-tooltip"
175
+ >
176
+ < span className = { styles . tabName } > Job output</ span >
177
+ </ EuiToolTip >
158
178
</ EuiTab >
159
179
</ EuiTabs >
160
180
) , [ selectedTab , isFullScreen ] )
@@ -223,7 +243,6 @@ const DryRunJobPanel = (props: Props) => {
223
243
</ EuiFlexItem >
224
244
</ EuiFlexGroup >
225
245
< div className = { cx ( styles . tabsWrapper , styles . codeLabel ) } >
226
- < EuiText > Results</ EuiText >
227
246
{ isSelectAvailable && (
228
247
< EuiSuperSelect
229
248
options = { targetOptions }
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ $animation-duration: 300ms;
59
59
60
60
.codeLabel {
61
61
display : flex ;
62
- justify-content : space-between ;
62
+ justify-content : flex-end ;
63
63
align-items : center ;
64
64
font : normal normal normal 14px / 17px Graphik, sans-serif ;
65
65
height : 28px ;
You can’t perform that action at this time.
0 commit comments