Skip to content

Commit

Permalink
refactor(front): rename Job{Steps→Progress}.vue
Browse files Browse the repository at this point in the history
To avoid confusion with the notion of jobs steps existing in Slurm.
  • Loading branch information
rezib committed Sep 30, 2024
1 parent 9e4521c commit 9cb8b55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions frontend/src/views/JobView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import ClusterMainLayout from '@/components/ClusterMainLayout.vue'
import { useClusterDataPoller } from '@/composables/DataPoller'
import type { ClusterIndividualJob } from '@/composables/GatewayAPI'
import JobStatusLabel from '@/components/jobs/JobStatusLabel.vue'
import JobSteps from '@/components/jobs/JobSteps.vue'
import JobProgress from '@/components/jobs/JobProgress.vue'
import { useRuntimeStore } from '@/stores/runtime'
import ErrorAlert from '@/components/ErrorAlert.vue'
import LoadingSpinner from '@/components/LoadingSpinner.vue'
Expand Down Expand Up @@ -79,7 +79,7 @@ const { data, unable, loaded } = useClusterDataPoller<ClusterIndividualJob>('job
</div>
<div class="flex flex-wrap">
<div class="w-full lg:w-1/3">
<JobSteps v-if="data" :job="data" />
<JobProgress v-if="data" :job="data" />
</div>
<div class="w-full lg:w-2/3">
<div class="border-t border-gray-100">
Expand Down

0 comments on commit 9cb8b55

Please sign in to comment.