We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e4e71f commit f4ae25fCopy full SHA for f4ae25f
frontend/appflowy_flutter/lib/workspace/presentation/home/desktop_home_screen.dart
@@ -318,7 +318,9 @@ class DesktopHomeScreen extends StatelessWidget {
318
ancestors.items.firstWhereOrNull((ancestor) => ancestor.isSpace),
319
(error) => null,
320
);
321
- switchToSpaceNotifier.value = space;
+ if (space?.id != switchToSpaceNotifier.value?.id) {
322
+ switchToSpaceNotifier.value = space;
323
+ }
324
}
325
326
0 commit comments