Skip to content

Commit

Permalink
Fix a misleading comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Tehsurfer committed Apr 19, 2024
1 parent f29fc97 commit 037f606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mixins/RetrieveContextCardMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default {
let s3path = url.split('s3-resource')[1];
let basePath = url.split('files/')[0] + 'files/' // This gives us the base path for our relative path we will get from scicrunch
let scaffoldPath = url.split('files/')[1].split('?')[0] // This gives us the relative path to the file we want to get from scicrunch
let s3uri = '?' + url.split('?')[1] // This gives us the full path to the file we want to get from scicrunch
let s3uri = '?' + url.split('?')[1] // This gives us the uri needed to get the file from s3

// split the url by '/'
const parts = s3path.split('/');
Expand Down

0 comments on commit 037f606

Please sign in to comment.