Skip to content

Commit

Permalink
move loadbarbutton to datasessions, removed unused css, changed conso…
Browse files Browse the repository at this point in the history
…le error to use alert store
  • Loading branch information
LTDakin committed Sep 4, 2024
1 parent ce4f563 commit 395c930
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,7 @@ defineProps({
left: 0;
background-color: var(--tan);
height: 100%;
width: 0%;
opacity: 1;
transition: 0.3s;
z-index: 1;
}
.selected .progress-bar {
Expand Down
8 changes: 2 additions & 6 deletions src/components/DataSession/OperationPipeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ref, watch, onBeforeUnmount } from 'vue'
import { useConfigurationStore } from '@/stores/configuration'
import { useAlertsStore } from '@/stores/alerts'
import { fetchApiCall, handleError } from '@/utils/api'
import LoadBarButton from '@/components/Global/LoadBarButton'
import LoadBarButton from '@/components/DataSession/LoadBarButton.vue'
const store = useConfigurationStore()
const alertStore = useAlertsStore()
Expand Down Expand Up @@ -70,7 +70,7 @@ async function pollOperationCompletion(operationID) {
}
}
else{
console.error('No response on status for operation:', operationID)
alertStore.setAlert('error', 'Operation status not found')
}
}
Expand Down Expand Up @@ -168,10 +168,6 @@ onBeforeUnmount(() => {
color: var(--metal);
}
.selected {
color: var(--tan);
}
@media (max-width: 1200px) {
.operations {
font-size: 1.3rem;
Expand Down

0 comments on commit 395c930

Please sign in to comment.