Skip to content

Commit db3fae7

Browse files
authored
fix(start) - fix a case when spinner with same name already exists (#8824)
1 parent 1522c42 commit db3fae7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scopes/preview/preview/preview.start-plugin.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,10 @@ export class PreviewStartPlugin implements StartPlugin {
9696
this.serversState[id] = { isCompiling: true };
9797
const spinnerId = getSpinnerId(id);
9898
const text = getSpinnerCompilingMessage(this.serversMap[id]);
99-
this.logger.multiSpinner.add(spinnerId, { text });
99+
const exists = this.logger.multiSpinner.spinners[spinnerId];
100+
if (!exists) {
101+
this.logger.multiSpinner.add(spinnerId, { text });
102+
}
100103
}
101104

102105
private handleOnDoneCompiling(id: string, results: CompilationResult) {

0 commit comments

Comments
 (0)