org.mvnpm.at.vaadin
diff --git a/src/main/resources/web/app/mvnpm-progress.ts b/src/main/resources/web/app/mvnpm-progress.ts
index 3adce79..67b8dab 100644
--- a/src/main/resources/web/app/mvnpm-progress.ts
+++ b/src/main/resources/web/app/mvnpm-progress.ts
@@ -2,6 +2,9 @@ import { LitElement, html, css } from 'lit';
import { customElement, state } from 'lit/decorators.js';
import '@vaadin/progress-bar';
import '@vaadin/message-list';
+import { dotStream } from 'ldrs';
+
+dotStream.register();
/**
* This component shows the Sync Progress screen
@@ -143,9 +146,19 @@ export class MvnpmProgress extends LitElement {
private _renderInitQueue() {
if (this._initQueue && this._initQueue.length > 0) {
- return html``;
+ return html`
+ `;
} else {
- return html`Nothing in the sync queue
`;
+ return html`
Waiting for sync
+ `;
}
}