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 2bb7b2d commit 706af8eCopy full SHA for 706af8e
src/containers/Tenants/Tenants.tsx
@@ -87,7 +87,9 @@ export const Tenants = ({additionalTenantsProps}: TenantsProps) => {
87
};
88
89
const renderCreateDBButton = () => {
90
- if (isCreateDBAvailable && clusterName) {
+ const buttonAvailable = isCreateDBAvailable && clusterName;
91
+
92
+ if (buttonAvailable && !loading) {
93
return (
94
<Button
95
view="action"
0 commit comments