|
@@ -104,6 +104,12 @@ export default class UpdateClusterModal extends Component<PropsType, StateType>
|
|
|
onYes={this.handleDelete}
|
|
onYes={this.handleDelete}
|
|
|
onNo={() => this.setState({ showDeleteOverlay: false })}
|
|
onNo={() => this.setState({ showDeleteOverlay: false })}
|
|
|
/>
|
|
/>
|
|
|
|
|
+
|
|
|
|
|
+ <Warning>
|
|
|
|
|
+ ⚠️ Deletion via Porter may result in dangling resources.
|
|
|
|
|
+ Please visit the AWS console to ensure that all resources have been removed.
|
|
|
|
|
+ </Warning>
|
|
|
|
|
+
|
|
|
</StyledUpdateProjectModal>
|
|
</StyledUpdateProjectModal>
|
|
|
);
|
|
);
|
|
|
}
|
|
}
|
|
@@ -196,4 +202,13 @@ const StyledUpdateProjectModal= styled.div`
|
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
|
border-radius: 6px;
|
|
border-radius: 6px;
|
|
|
background: #202227;
|
|
background: #202227;
|
|
|
-`;
|
|
|
|
|
|
|
+`;
|
|
|
|
|
+
|
|
|
|
|
+const Warning = styled.div`
|
|
|
|
|
+ width: 65%;
|
|
|
|
|
+ margin-top: 3px;
|
|
|
|
|
+ font-family: 'Work Sans', sans-serif;
|
|
|
|
|
+ font-size: 13px;
|
|
|
|
|
+ color: #aaaabb;
|
|
|
|
|
+ text-align: justify;
|
|
|
|
|
+`
|