/
dimamir
/
rill
Обзор
Документация
Войти
/
dimamir
/
rill
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
web-admin/src/features/projects/github/GithubRepoInline.svelte
16 строк
375 B
Aditya Hegde
fix: Block user from deploying when deployed project is connected to github (#5404)
07 авг 2024, 10:44
Не верифицирован
07 авг 2024, 10:44
8abd21e
Код
Авторство
О чём код?
<script lang="ts"> import { getRepoNameFromGithubUrl } from "@rilldata/web-common/features/project/github-utils"; export let githubUrl: string; const repoName = getRepoNameFromGithubUrl(githubUrl); </script> <a href={githubUrl} target="_blank" class="font-semibold font-mono text-gray-800 text-[16px] leading-5" rel="noreferrer noopener" > {repoName} </a>