Explorar el Código

Merge pull request #153 from smiclea/enable-create-migration

Let 'Create Migration' button be enabled
Dorin Paslaru hace 8 años
padre
commit
cf35ab92a3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/components/organisms/ReplicaDetailsContent/index.jsx

+ 1 - 1
src/components/organisms/ReplicaDetailsContent/index.jsx

@@ -122,7 +122,7 @@ class ReplicaDetailsContent extends React.Component<Props, State> {
         <LeftButtons>
           <Button
             primary
-            disabled={this.getStatus() !== 'COMPLETED' || this.isEndpointMissing()}
+            disabled={this.isEndpointMissing()}
             onClick={this.props.onCreateMigrationClick}
           >Create Migration</Button>
         </LeftButtons>