Skip to content

Commit

Permalink
Rename for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
webfiltered committed Jan 18, 2025
1 parent 374c4ec commit 4ee9360
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/common/RefreshButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import Button from 'primevue/button'
import ProgressSpinner from 'primevue/progressspinner'

import { VueSeverity } from '@/types/vueTypes'
import { VueSeverity } from '@/types/primeVueTypes'

// Properties
interface Props {
Expand Down
2 changes: 1 addition & 1 deletion src/components/maintenance/TaskCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ import Button from 'primevue/button'
import Card from 'primevue/card'
import { computed } from 'vue'
import type { MaintenanceTask } from '@/types/maintenanceTypes'
import type { MaintenanceTask } from '@/types/desktop/maintenanceTypes'
// Properties
const props = defineProps<{
Expand Down
4 changes: 2 additions & 2 deletions src/components/maintenance/TaskListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ import Button from 'primevue/button'
import Popover from 'primevue/popover'
import { computed, ref } from 'vue'
import type { MaintenanceTask } from '@/types/maintenanceTypes'
import { VueSeverity } from '@/types/vueTypes'
import type { MaintenanceTask } from '@/types/desktop/maintenanceTypes'
import { VueSeverity } from '@/types/primeVueTypes'
import TaskListStatusIcon from './TaskListStatusIcon.vue'
Expand Down
2 changes: 1 addition & 1 deletion src/components/maintenance/TaskListPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import { t } from '@/i18n'
import type {
MaintenanceFilter,
MaintenanceTask
} from '@/types/maintenanceTypes'
} from '@/types/desktop/maintenanceTypes'
import TaskCard from './TaskCard.vue'
import TaskListItem from './TaskListItem.vue'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { MaybeRef } from 'vue'

import type { VueSeverity } from './vueTypes'
import type { VueSeverity } from '../primeVueTypes'

interface MaintenanceTaskButton {
text?: string
Expand Down
File renamed without changes.
5 changes: 4 additions & 1 deletion src/views/MaintenanceView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,10 @@ import StatusTag from '@/components/maintenance/StatusTag.vue'
import TaskListPanel from '@/components/maintenance/TaskListPanel.vue'
import type { useTerminal } from '@/hooks/bottomPanelTabs/useTerminal'
import { st, t } from '@/i18n'
import { MaintenanceFilter, MaintenanceTask } from '@/types/maintenanceTypes'
import {
MaintenanceFilter,
MaintenanceTask
} from '@/types/desktop/maintenanceTypes'
import { electronAPI, isElectron } from '@/utils/envUtil'
import { minDurationRef } from '@/utils/refUtil'
Expand Down

0 comments on commit 4ee9360

Please sign in to comment.