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
f185528f
Commit
f185528f
authored
Mar 01, 2016
by
Carl Bergquist
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4195 from peggyl/fix-dashboard-typo
Fix typo in function name
parents
5d5f5cd9
773a5631
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
pkg/api/dashboard.go
+2
-2
No files found.
pkg/api/dashboard.go
View file @
f185528f
...
...
@@ -16,7 +16,7 @@ import (
"github.com/grafana/grafana/pkg/util"
)
func
isDasboardStarredByUser
(
c
*
middleware
.
Context
,
dashId
int64
)
(
bool
,
error
)
{
func
isDas
h
boardStarredByUser
(
c
*
middleware
.
Context
,
dashId
int64
)
(
bool
,
error
)
{
if
!
c
.
IsSignedIn
{
return
false
,
nil
}
...
...
@@ -41,7 +41,7 @@ func GetDashboard(c *middleware.Context) {
return
}
isStarred
,
err
:=
isDasboardStarredByUser
(
c
,
query
.
Result
.
Id
)
isStarred
,
err
:=
isDas
h
boardStarredByUser
(
c
,
query
.
Result
.
Id
)
if
err
!=
nil
{
c
.
JsonApiErr
(
500
,
"Error while checking if dashboard was starred by user"
,
err
)
return
...
...
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