(title: string)
| 34 | import { RunTypeIcon } from './run_type_icon' |
| 35 | |
| 36 | function convertToURL(title: string) { |
| 37 | return title |
| 38 | .toLowerCase() |
| 39 | .replace(/ /g, '-') |
| 40 | .replace(/[^\w-]+/g, '') |
| 41 | } |
| 42 | |
| 43 | interface SaveProjectModalProps { |
| 44 | isOpen: boolean |