Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Commits on Source (3)
(chore): use exact paths for source maps
· 6a48c5b1
Mark Harding
authored
Aug 22, 2019
6a48c5b1
Merge branch 'master' of gitlab.com:minds/front into fix/video-play-outside-canary-1761
· 5df80b06
Olivia Madrid
authored
Aug 23, 2019
5df80b06
(fix): added some spaces between brackets
· 078c20db
Olivia Madrid
authored
Aug 23, 2019
078c20db
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
078c20db
...
...
@@ -140,7 +140,7 @@ build:production:i18n:
-
echo "Create a new release $CI_COMMIT_SHA"
-
sentry-cli releases new $CI_COMMIT_SHA
-
sentry-cli releases set-commits --auto $CI_COMMIT_SHA
-
sentry-cli releases files $CI_COMMIT_SHA upload-sourcemaps $CI_PROJECT_DIR/dist/en -x .js -x .map --validate --
verbose --rewrite --strip-common-prefix
-
sentry-cli releases files $CI_COMMIT_SHA upload-sourcemaps $CI_PROJECT_DIR/dist/en -x .js -x .map --validate --
url-prefix $SOURCEMAP_PREFIX
-
sentry-cli releases finalize $CI_COMMIT_SHA
-
echo "Finalized release for $CI_COMMIT_SHA"
...
...
@@ -160,6 +160,8 @@ prepare:review:
prepare:review:sentry
:
<<
:
*sentry_prepare
variables
:
SOURCEMAP_PREFIX
:
"
~/en"
except
:
refs
:
-
master
...
...
@@ -184,6 +186,8 @@ prepare:production:
prepare:production:sentry
:
<<
:
*sentry_prepare
variables
:
SOURCEMAP_PREFIX
:
"
~/front/dist/en"
only
:
refs
:
-
master
...
...
src/app/modules/legacy/components/cards/remind/remind.ts
View file @
078c20db
...
...
@@ -181,7 +181,7 @@ export class Remind {
class
:
'
m-overlayModal--media
'
}).
present
();
}
else
{
if
(
this
.
activity
.
custom_type
!==
'
video
'
){
if
(
this
.
activity
.
custom_type
!==
'
video
'
)
{
this
.
router
.
navigate
([
`/media/
${
this
.
activity
.
entity_guid
}
`
]);
}
}
...
...
src/app/modules/media/components/video/video.component.ts
View file @
078c20db
...
...
@@ -403,7 +403,7 @@ export class MindsVideoComponent implements OnDestroy {
}
let
isMediaPage
=
false
;
if
(
!
this
.
isModal
&&
!
this
.
isActivity
){
if
(
!
this
.
isModal
&&
!
this
.
isActivity
)
{
isMediaPage
=
true
;
}
...
...