Diff and update mobile configs

Summary:
This diff makes it possible to apply MC's to a currently running as part of the support form process.

Things _NOT_ done in the diff:

* make sure getUniverses and getGatekeepers returns valid configs (this broke since somewhere last week, opened T57918601 for that. However, before that this worked correctly
* provide a more interactive UI when applying MC's, such as beeing able to see a diff preview, ask confirmation before overriding current config, etc

Reviewed By: jknoxville

Differential Revision: D18452172

fbshipit-source-id: da3f24bccf88260282f86e2564e983a9ee217c2f
This commit is contained in:
Michel Weststrate
2019-11-21 08:00:25 -08:00
committed by Facebook Github Bot
parent 86caf00ead
commit f33666a4b9
4 changed files with 11 additions and 8 deletions

View File

@@ -49,6 +49,7 @@ const InfoWrapper = styled(FlexColumn)(({type}: {type: InfoProps['type']}) => ({
border: `1px solid ${color[type]}`,
background: bgColor[type],
}));
InfoWrapper.displayName = 'InfoWrapper';
/**
* Shows an info box with some text and a symbol.

View File

@@ -8,7 +8,6 @@
*/
import React from 'react';
import FlexColumn from './FlexColumn';
import Label from './Label';
import VBox from './VBox';
@@ -16,10 +15,10 @@ import VBox from './VBox';
* Vertically arranged section that starts with a label and includes standard margins
*/
const Labeled: React.FC<{title: string}> = ({title, children}) => (
<FlexColumn>
<VBox>
<Label style={{marginBottom: 6}}>{title}</Label>
<VBox>{children}</VBox>
</FlexColumn>
{children}
</VBox>
);
export default Labeled;