Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
[UI] Fix fetching task logs uri (#2630)
Browse files Browse the repository at this point in the history
  • Loading branch information
Howaric Kown authored Dec 15, 2021
1 parent 22a2843 commit 76d3b73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/pages/execution/TaskLogs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { DataTable, Text, LinearProgress } from "../../components";

export default function TaskLogs({ task }) {
const { taskId } = task;
const { data: log, isFetching } = useFetch(`/api/tasks/${taskId}/log`);
const { data: log, isFetching } = useFetch(`/tasks/${taskId}/log`);

if (isFetching) {
return <LinearProgress />;
Expand Down

0 comments on commit 76d3b73

Please sign in to comment.