Skip to content

Commit

Permalink
Merge branch 'main' into andrea/jupyter-free-build
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-code authored Oct 18, 2024
2 parents 563fdda + 03b508a commit f2e6473
Show file tree
Hide file tree
Showing 4 changed files with 145 additions and 223 deletions.
4 changes: 2 additions & 2 deletions client/src/file/File.present.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class ShowFile extends React.Component {
<ExternalIconLink
tooltip="Open in GitLab"
icon={<BootstrapGitLabIcon className="bi" />}
to={`${this.props.externalUrl}/blob/${branch}/${gitLabFilePath}`}
url={`${this.props.externalUrl}/blob/${branch}/${gitLabFilePath}`}
/>
);

Expand Down Expand Up @@ -226,7 +226,7 @@ class ShowFile extends React.Component {
<ExternalIconLink
tooltip="Download File"
icon={<Download className="bi" />}
to={downloadLink}
url={downloadLink}
/>
);
const body = (
Expand Down
4 changes: 2 additions & 2 deletions client/src/file/Lineage.present.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ class FileLineage extends Component {
<ExternalIconLink
tooltip="Open in GitLab"
icon={<BootstrapGitLabIcon className="bi" />}
to={externalFileUrl}
url={externalFileUrl}
/>
);

Expand All @@ -330,7 +330,7 @@ class FileLineage extends Component {
tooltip="Download File"
icon={<Download className="bi" />}
// TODO: change this!!!
to={`${this.props.externalUrl}/-/raw/master/${this.props.path}?inline=false`}
url={`${this.props.externalUrl}/-/raw/master/${this.props.path}?inline=false`}
/>
);

Expand Down
Loading

0 comments on commit f2e6473

Please sign in to comment.