feat(github-actions): add a separate data mock

This commit is contained in:
Nikita Nek Dudnik
2020-07-24 15:56:48 +02:00
parent 25e41d2274
commit c82c045ee8
5 changed files with 7 additions and 22 deletions
@@ -156,7 +156,7 @@ export const WorkflowRunDetailsPage = () => {
const [owner, repo] = (
useProjectName({
kind: 'Component',
name: 'backstage-site',
name: 'backstage',
}) ?? '/'
).split('/');
const details = useWorkflowRunsDetails(repo, owner);
@@ -33,7 +33,7 @@ export function useWorkflowRuns() {
const projectName = useProjectName({
kind: 'Component',
name: 'backstage-site',
name: 'backstage',
});
const { loading, value: runs, retry } = useAsyncRetry<
WorkflowRun[]