Skip to content

Commit

Permalink
accommodate '/' in dashboard tags (re getredash#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Short committed Jan 8, 2018
1 parent ba74d69 commit e172a53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/pages/dashboards/dashboard-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import './dashboard-list.css';


function DashboardListCtrl(Dashboard, $location) {
const TAGS_REGEX = /(^([\w\s]|[^\u0000-\u007F])+):|(#([\w-]|[^\u0000-\u007F])+)/ig;
const TAGS_REGEX = /(^([\w\s/]|[^\u0000-\u007F])+):|(#([\w-]|[^\u0000-\u007F])+)/ig;

const page = parseInt($location.search().page || 1, 10);

Expand Down

0 comments on commit e172a53

Please sign in to comment.