Skip to content

Commit

Permalink
Fix project
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdalpino committed Feb 18, 2024
1 parent 10f4513 commit 9204709
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 51 deletions.
2 changes: 0 additions & 2 deletions ui/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import ProcessInfo from './components/ProcessInfo.vue';
import ServerSettings from './components/ServerSettings.vue';
import AppUpdateAvailable from './components/AppUpdateAvailable.vue';
import CommunicationError from './components/CommunicationError.vue';
import PageLoader from './components/PageLoader.vue';
import { apolloClient } from './providers/apollo';
import { Workbox } from 'workbox-window';
import routes from './routes';
Expand Down Expand Up @@ -68,7 +67,6 @@ Vue.component('process-info', ProcessInfo);
Vue.component('server-settings', ServerSettings);
Vue.component('app-update-available', AppUpdateAvailable);
Vue.component('communication-error', CommunicationError);
Vue.component('page-loader', PageLoader);

Vue.use(VueRouter);
Vue.use(VueApollo);
Expand Down
45 changes: 0 additions & 45 deletions ui/components/PageLoader.vue

This file was deleted.

4 changes: 0 additions & 4 deletions ui/pages/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
</div>
</div>
</section>
<page-loader :loading="loading"></page-loader>
</div>
</template>

Expand Down Expand Up @@ -66,7 +65,6 @@ export default Vue.extend({
},
model: null,
stream: null,
loading: false,
};
},
mounted() : void {
Expand Down Expand Up @@ -134,8 +132,6 @@ export default Vue.extend({
});
this.stream = stream;
this.loading = false;
});
}).catch((error) => {
bus.$emit('communication-error', {
Expand Down

0 comments on commit 9204709

Please sign in to comment.