mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-07 22:28:48 +00:00
Allow numbers in tab name (#2004)
This commit is contained in:
parent
6f5c2a8c1e
commit
898fb88d86
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ import classNames from "classnames";
|
||||||
import { TabContext } from "utils/contexts/tab";
|
import { TabContext } from "utils/contexts/tab";
|
||||||
|
|
||||||
export function slugify(tabName) {
|
export function slugify(tabName) {
|
||||||
return tabName ? encodeURIComponent(tabName.replace(/\s+/g, '-').toLowerCase()) : ''
|
return tabName ? encodeURIComponent(tabName.toString().replace(/\s+/g, '-').toLowerCase()) : ''
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Tab({ tab }) {
|
export default function Tab({ tab }) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue