did nothing

This commit is contained in:
muerwre 2019-03-29 17:26:37 +07:00
parent 6714721adf
commit 644a15b782
2 changed files with 5 additions and 1 deletions

View file

@ -51,7 +51,9 @@ export const RouteRowView = ({
(tab === 'all' || tab === 'starred') && is_starred && !is_admin &&
<Icon icon="icon-star-fill" size={18} />
}
<span>{(title || _id)}</span>
<span>
{(title || _id)}
</span>
</div>
<div className="route-description">

View file

@ -15,3 +15,5 @@ export const toTranslit = (string: string): string => (
);
export const parseDesc = (text: string): string => text.replace(/(\n{2,})/ig, "\n\n");
// export const colorizeTitle = (text: string): string => text.replace(/(\[[^\]^]+\])/, ``)