Skip to content

Commit 9204709

Browse files
committed
Fix project
1 parent 10f4513 commit 9204709

File tree

3 files changed

+0
-51
lines changed

3 files changed

+0
-51
lines changed

ui/app.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import ProcessInfo from './components/ProcessInfo.vue';
1717
import ServerSettings from './components/ServerSettings.vue';
1818
import AppUpdateAvailable from './components/AppUpdateAvailable.vue';
1919
import CommunicationError from './components/CommunicationError.vue';
20-
import PageLoader from './components/PageLoader.vue';
2120
import { apolloClient } from './providers/apollo';
2221
import { Workbox } from 'workbox-window';
2322
import routes from './routes';
@@ -68,7 +67,6 @@ Vue.component('process-info', ProcessInfo);
6867
Vue.component('server-settings', ServerSettings);
6968
Vue.component('app-update-available', AppUpdateAvailable);
7069
Vue.component('communication-error', CommunicationError);
71-
Vue.component('page-loader', PageLoader);
7270

7371
Vue.use(VueRouter);
7472
Vue.use(VueApollo);

ui/components/PageLoader.vue

Lines changed: 0 additions & 45 deletions
This file was deleted.

ui/pages/Dashboard.vue

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
</div>
3737
</div>
3838
</section>
39-
<page-loader :loading="loading"></page-loader>
4039
</div>
4140
</template>
4241

@@ -66,7 +65,6 @@ export default Vue.extend({
6665
},
6766
model: null,
6867
stream: null,
69-
loading: false,
7068
};
7169
},
7270
mounted() : void {
@@ -134,8 +132,6 @@ export default Vue.extend({
134132
});
135133
136134
this.stream = stream;
137-
138-
this.loading = false;
139135
});
140136
}).catch((error) => {
141137
bus.$emit('communication-error', {

0 commit comments

Comments
 (0)