Skip to content

Commit 1364332

Browse files
authored
fix: local nodes not fetched when cached one is empty array (#457)
1 parent 5c6b7e7 commit 1364332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/lib/src/lib/services/luigi-nodes/local-configuration.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class LocalConfigurationServiceImpl {
4343

4444
this.addLocalDevelopmentModeOnIndicator();
4545

46-
if (this.cachedLocalNodes) {
46+
if (this.cachedLocalNodes?.length) {
4747
return this.cachedLocalNodes;
4848
}
4949

0 commit comments

Comments
 (0)