Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
382
Merge Requests
62
CI / CD
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
443efc60
Commit
443efc60
authored
7 hours ago
by
Mark Harding
Browse files
Options
Download
(fix): couple issues when configs fails to load
parent
6968119e
master
feat/2511-activity-v2
No related merge requests found
Pipeline
#115125747
waiting for manual action with stages
in 95 minutes and 40 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
src/app/modules/search/bar.component.ts
View file @
443efc60
...
...
@@ -67,7 +67,7 @@ export class SearchBarComponent {
}
unListen
()
{
this
.
routerSubscription
.
unsubscribe
();
if
(
this
.
routerSubscription
)
this
.
routerSubscription
.
unsubscribe
();
}
handleUrl
(
url
:
string
)
{
...
...
This diff is collapsed.
src/app/services/features.service.ts
View file @
443efc60
...
...
@@ -19,6 +19,8 @@ export class FeaturesService {
has
(
feature
:
string
):
boolean
{
const
features
=
this
.
configs
.
get
(
'
features
'
);
if
(
!
features
)
return
false
;
if
(
!
feature
)
{
throw
new
Error
(
'
Invalid feature ID
'
);
}
...
...
This diff is collapsed.
Please
register
or
sign in
to comment