Skip to content

Commit

Permalink
Fix [General] Issue with UI build job (#2055)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariana-furyk authored Oct 31, 2023
1 parent d6f2ac1 commit 7b87922
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/common/Download/Download.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { RoundedIcon, Tooltip, TextTooltipTemplate } from 'igz-controls/componen

import { setDownloadItem, setShowDownloadsList } from '../../reducers/downloadReducer'

import { ReactComponent as DownloadIcon } from '../../../../dashboard-react-controls/src/lib/images/download.svg'
import { ReactComponent as DownloadIcon } from 'igz-controls/images/download.svg'

import './download.scss'

Expand Down
2 changes: 1 addition & 1 deletion src/components/Datasets/Datasets.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import { ReactComponent as TagIcon } from 'igz-controls/images/tag-icon.svg'
import { ReactComponent as YamlIcon } from 'igz-controls/images/yaml.svg'
import { ReactComponent as ArtifactView } from 'igz-controls/images/eye-icon.svg'
import { ReactComponent as Copy } from 'igz-controls/images/copy-to-clipboard-icon.svg'
import { ReactComponent as DownloadIcon } from '../../../../dashboard-react-controls/src/lib/images/download.svg'
import { ReactComponent as DownloadIcon } from 'igz-controls/images/download.svg'

const Datasets = () => {
const [datasets, setDatasets] = useState([])
Expand Down
2 changes: 1 addition & 1 deletion src/components/Files/Files.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ import { ReactComponent as TagIcon } from 'igz-controls/images/tag-icon.svg'
import { ReactComponent as YamlIcon } from 'igz-controls/images/yaml.svg'
import { ReactComponent as ArtifactView } from 'igz-controls/images/eye-icon.svg'
import { ReactComponent as Copy } from 'igz-controls/images/copy-to-clipboard-icon.svg'
import { ReactComponent as DownloadIcon } from '../../../../dashboard-react-controls/src/lib/images/download.svg'
import { ReactComponent as DownloadIcon } from 'igz-controls/images/download.svg'

const Files = () => {
const [files, setFiles] = useState([])
Expand Down
2 changes: 1 addition & 1 deletion src/components/ModelsPage/Models/Models.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ import { ReactComponent as TagIcon } from 'igz-controls/images/tag-icon.svg'
import { ReactComponent as YamlIcon } from 'igz-controls/images/yaml.svg'
import { ReactComponent as ArtifactView } from 'igz-controls/images/eye-icon.svg'
import { ReactComponent as Copy } from 'igz-controls/images/copy-to-clipboard-icon.svg'
import { ReactComponent as DownloadIcon } from '../../../../../dashboard-react-controls/src/lib/images/download.svg'
import { ReactComponent as DownloadIcon } from 'igz-controls/images/download.svg'

const Models = ({ fetchModelFeatureVector }) => {
const [selectedModel, setSelectedModel] = useState({})
Expand Down

0 comments on commit 7b87922

Please sign in to comment.