@eric-emg/symphiq-components 1.2.307 → 1.2.308

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -54236,7 +54236,8 @@ class SymphiqConnectGaDashboardComponent {
54236
54236
  const properties = this.gaProperties();
54237
54237
  const selectedId = this.selectedGaPropertyId();
54238
54238
  const isEditing = this.isEditingProperty();
54239
- return properties && properties.length > 0 && (!selectedId || isEditing);
54239
+ const reconnecting = this.isReconnecting();
54240
+ return properties && properties.length > 0 && (!selectedId || isEditing) && !reconnecting;
54240
54241
  }, ...(ngDevMode ? [{ debugName: "isSelectionState" }] : []));
54241
54242
  this.isSelectedState = computed(() => {
54242
54243
  const properties = this.gaProperties();