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
e7b718ed
Commit
e7b718ed
authored
Oct 12, 2017
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: fixed links on new 404 page, fixes #9493
parent
b5727949
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
8 deletions
+9
-8
public/app/core/controllers/error_ctrl.js
+4
-2
public/app/partials/error.html
+2
-2
public/sass/pages/_errorpage.scss
+2
-3
tslint.json
+1
-1
No files found.
public/app/core/controllers/error_ctrl.js
View file @
e7b718ed
define
([
'angular'
,
'app/core/config'
,
'../core_module'
,
],
function
(
angular
,
coreModule
)
{
function
(
angular
,
co
nfig
,
co
reModule
)
{
'use strict'
;
coreModule
.
default
.
controller
(
'ErrorCtrl'
,
function
(
$scope
,
contextSrv
,
navModelSrv
)
{
$scope
.
navModel
=
navModelSrv
.
getNotFoundNav
();
$scope
.
appSubUrl
=
config
.
appSubUrl
;
var
showSideMenu
=
contextSrv
.
sidemenu
;
contextSrv
.
sidemenu
=
false
;
$scope
.
$on
(
'$destroy'
,
function
()
{
$scope
.
contextSrv
.
sidemenu
=
showSideMenu
;
contextSrv
.
sidemenu
=
showSideMenu
;
});
});
...
...
public/app/partials/error.html
View file @
e7b718ed
...
...
@@ -42,8 +42,8 @@
</div>
<div>
<h3>
Sorry for the inconvenience
</h3>
<p>
Please go back to your
<a
href=
"
#
"
class=
"error-link"
>
home dashboard
</a>
and try again.
</p>
<p>
If the error persists, seek help on the
<a
href=
"
#
"
class=
"error-link"
>
community site
</a>
.
</p>
<p>
Please go back to your
<a
href=
"
{{appSubUrl}}/
"
class=
"error-link"
>
home dashboard
</a>
and try again.
</p>
<p>
If the error persists, seek help on the
<a
href=
"
https://community.grafana.com"
target=
"_blank
"
class=
"error-link"
>
community site
</a>
.
</p>
</div>
</div>
</div>
...
...
public/sass/pages/_errorpage.scss
View file @
e7b718ed
...
...
@@ -43,7 +43,7 @@
line-height
:
1rem
;
}
.error-link
{
color
:
$
yellow
;}
.error-link
{
color
:
$
orange
;}
.error-minus
{
color
:
#7eb26d
;
...
...
@@ -57,4 +57,4 @@
line-height
:
1rem
;
}
.graph-text
{
margin
:
0
;}
\ No newline at end of file
.graph-text
{
margin
:
0
;}
tslint.json
View file @
e7b718ed
...
...
@@ -2,8 +2,8 @@
"rules"
:
{
"no-string-throw"
:
true
,
"no-unused-expression"
:
true
,
"no-duplicate-variable"
:
true
,
"no-unused-variable"
:
true
,
"no-duplicate-variable"
:
true
,
"curly"
:
true
,
"class-name"
:
true
,
"semicolon"
:
[
true
,
"always"
,
"ignore-bound-class-methods"
],
...
...
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