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 1076e0e commit 3b915b1Copy full SHA for 3b915b1
.changelog/22789.txt
@@ -0,0 +1,3 @@
1
+```release-note:bug
2
+ui: fixes the issue where namespaces where disappearing and Welcome to Namespace screen showed up after tab switching
3
+```
ui/packages/consul-ui/app/services/repository/nspace.js
@@ -57,7 +57,7 @@ export default class NspaceService extends RepositoryService {
57
if (!this.permissions.can('use nspaces')) {
58
return [];
59
}
60
- return super.findAll(...arguments).catch(() => []);
+ return super.findAll(...arguments);
61
62
63
@dataSource('/:partition/:ns/:dc/namespace/:id')
0 commit comments