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 @@ -34,7 +34,7 @@ const RdiConfigFileActionMenu = () => {
onClose={closeMenu}
trigger={
<Menu.Content.Item
text="Download from server"
text="Download deployed pipeline"
icon={DownloadIcon}
onClick={(e) => e.preventDefault()}
aria-labelledby="Upload pipeline button"
Expand All @@ -46,7 +46,7 @@ const RdiConfigFileActionMenu = () => {
onClose={closeMenu}
trigger={
<Menu.Content.Item
text="Upload from file"
text="Import pipeline from ZIP file"
icon={UploadIcon}
onClick={(e) => e.preventDefault()}
aria-labelledby="Upload file button"
Expand All @@ -57,7 +57,7 @@ const RdiConfigFileActionMenu = () => {
<Download
trigger={
<Menu.Content.Item
text="Save to file"
text="Save pipeline to ZIP file"
icon={SaveIcon}
aria-labelledby="Download pipeline button"
data-testid="download-pipeline-btn"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ const DownloadFromServerModal = (props: Props) => {
<Modal.Content.Close />
<Modal.Content.Header title="Download a pipeline from the server" />
<Modal.Content.Body.Compose>
When downloading a new pipeline from the server, it will overwrite the
existing one displayed in Redis Insight.
When downloading the pipeline configuration from the server, it will
overwrite the existing one displayed in Redis Insight.
</Modal.Content.Body.Compose>
<Modal.Content.Footer.Compose>
<Download
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from 'react'
import { cloneDeep } from 'lodash'
import {
cleanup,
mockedStore,
Expand All @@ -10,7 +9,6 @@ import {
createMockedStore,
} from 'uiSrc/utils/test-utils'
import {
getPipeline,
rdiPipelineSelector,
setChangedFile,
} from 'uiSrc/slices/rdi/pipeline'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const SourcePipelineDialog = () => {
>
<UploadIcon size="XL" />
<Text color="primary" size="S" textAlign="center">
Upload from file
Import pipeline from ZIP file
</Text>
</ButtonWrapper>
<ButtonWrapper
Expand Down
Loading