Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
4545b4d3
Commit
4545b4d3
authored
Jul 07, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(login): minor fix redirect on login change
parent
d74eb8c1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
public/app/core/components/sidemenu/sidemenu.html
+1
-1
public/app/core/components/sidemenu/sidemenu.ts
+2
-2
No files found.
public/app/core/components/sidemenu/sidemenu.html
View file @
4545b4d3
...
...
@@ -45,7 +45,7 @@
</li>
<li
ng-show=
"::!ctrl.isSignedIn"
>
<a
href=
"{{ctrl.loginUrl}}"
class=
"sidemenu-item"
>
<a
href=
"{{ctrl.loginUrl}}"
class=
"sidemenu-item"
target=
"_self"
>
<span
class=
"icon-circle sidemenu-icon"
><i
class=
"fa fa-fw fa-sign-in"
></i></span>
<span
class=
"sidemenu-item-text"
>
Sign in
</span>
</a>
...
...
public/app/core/components/sidemenu/sidemenu.ts
View file @
4545b4d3
...
...
@@ -23,13 +23,13 @@ export class SideMenuCtrl {
this
.
mainLinks
=
config
.
bootData
.
mainNavLinks
;
this
.
openUserDropdown
();
this
.
loginUrl
=
'
/
login?redirect='
+
encodeURIComponent
(
this
.
$location
.
path
());
this
.
loginUrl
=
'login?redirect='
+
encodeURIComponent
(
this
.
$location
.
path
());
this
.
$scope
.
$on
(
'$routeChangeSuccess'
,
()
=>
{
if
(
!
this
.
contextSrv
.
pinned
)
{
this
.
contextSrv
.
sidemenu
=
false
;
}
this
.
loginUrl
=
'
/
login?redirect='
+
encodeURIComponent
(
this
.
$location
.
path
());
this
.
loginUrl
=
'login?redirect='
+
encodeURIComponent
(
this
.
$location
.
path
());
});
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment