replace spaces in tab slugify

pull/1996/head
shamoon 1 year ago
parent 6dc3be6029
commit 42b69e44a2

@ -4,7 +4,7 @@ import classNames from "classnames";
import { TabContext } from "utils/contexts/tab";
export function slugify(tabName) {
return tabName ? encodeURIComponent(tabName.toLowerCase()) : ''
return tabName ? encodeURIComponent(tabName.replace(/\s+/g, '-').toLowerCase()) : ''
}
export default function Tab({ tab }) {

Loading…
Cancel
Save