Skip to content

Commit

Permalink
fix(view): fixed dashboard view base url
Browse files Browse the repository at this point in the history
  • Loading branch information
Waasi committed Dec 3, 2018
1 parent ea20840 commit 05f0b86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,8 @@ typings/

# next.js build output
.next

# Elastic Beanstalk Files
.elasticbeanstalk/*
!.elasticbeanstalk/*.cfg.yml
!.elasticbeanstalk/*.global.yml
2 changes: 1 addition & 1 deletion views/dashboard.pug
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ html
include ../js/main.js
body
br
select(onchange=`filter(value, ${baseUrl})`, class="form-control col-md-6")
select(onchange=`filter(value, "${baseUrl}")`, class="form-control col-md-6")
option(value="", selected=true, disabled=true)='Filter By Message Type'
option(value="")= "All Messages"
option(value="Food")= "Food"
Expand Down

0 comments on commit 05f0b86

Please sign in to comment.