mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
4 lines
111 B
TypeScript
4 lines
111 B
TypeScript
export function toRouterLink(id: string): string {
|
|
return id.includes('/') ? id : `/portal/services/${id}`
|
|
}
|