Skip to content

Commit

Permalink
added back fix for / in tags
Browse files Browse the repository at this point in the history
  • Loading branch information
alison985 committed Jun 14, 2017
1 parent 9c5dbab commit 2010969
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, clientConfig) {
const TAGS_REGEX = /(^([\w\s]|[^\u0000-\u007F])+):|(#([\w-]|[^\u0000-\u007F])+)/ig;
const TAGS_REGEX = /(^([\w\s/]|[^\u0000-\u007F])+):|(#([\w-]|[^\u0000-\u007F])+)/ig;

this.logoUrl = clientConfig.logoUrl;
const page = parseInt($location.search().page || 1, 10);
Expand Down

0 comments on commit 2010969

Please sign in to comment.