Skip to content

Commit

Permalink
fix imports for webui
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaun Dunning committed Feb 15, 2018
1 parent 5aa7752 commit 85f9368
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/workwebui/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/garyburd/redigo/redis"
"github.com/dexcodeinc/work/webui"
"github.com/gocraft/work/webui"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions webui/webui.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/braintree/manners"
"github.com/garyburd/redigo/redis"
"github.com/gocraft/web"
"github.com/dexcodeinc/work"
"github.com/dexcodeinc/work/webui/internal/assets"
"github.com/gocraft/work"
"github.com/gocraft/work/webui/internal/assets"
)

// Server implements an HTTP server which exposes a JSON API to view and manage gocraft/work items.
Expand Down
2 changes: 1 addition & 1 deletion webui/webui_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"time"

"github.com/garyburd/redigo/redis"
"github.com/dexcodeinc/work"
"github.com/gocraft/work"
"github.com/stretchr/testify/assert"
)

Expand Down

1 comment on commit 85f9368

@kumarsiva07
Copy link

@kumarsiva07 kumarsiva07 commented on 85f9368 Mar 18, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shdunning I have to do some changes in react. How to build it after the reactjs changes?

Please sign in to comment.