diff --git a/desktop/flipper-ui-core/src/chrome/plugin-manager/PluginInstaller.tsx b/desktop/flipper-ui-core/src/chrome/plugin-manager/PluginInstaller.tsx index 6e56ed506..f9790d206 100644 --- a/desktop/flipper-ui-core/src/chrome/plugin-manager/PluginInstaller.tsx +++ b/desktop/flipper-ui-core/src/chrome/plugin-manager/PluginInstaller.tsx @@ -49,7 +49,7 @@ const columns = { value: 'Description', }, install: { - value: '', + value: 'Action', }, }; diff --git a/desktop/flipper-ui-core/src/chrome/plugin-manager/__tests__/__snapshots__/PluginInstaller.node.tsx.snap b/desktop/flipper-ui-core/src/chrome/plugin-manager/__tests__/__snapshots__/PluginInstaller.node.tsx.snap index e8c685f8b..66b75922e 100644 --- a/desktop/flipper-ui-core/src/chrome/plugin-manager/__tests__/__snapshots__/PluginInstaller.node.tsx.snap +++ b/desktop/flipper-ui-core/src/chrome/plugin-manager/__tests__/__snapshots__/PluginInstaller.node.tsx.snap @@ -53,7 +53,7 @@ exports[`load PluginInstaller list 1`] = `
- + Action
@@ -429,7 +429,7 @@ exports[`load PluginInstaller list with one plugin installed 1`] = `
- + Action
diff --git a/desktop/flipper-ui-core/src/ui/components/table/ManagedTable.tsx b/desktop/flipper-ui-core/src/ui/components/table/ManagedTable.tsx index 7c72e3f63..3dbf6ab77 100644 --- a/desktop/flipper-ui-core/src/ui/components/table/ManagedTable.tsx +++ b/desktop/flipper-ui-core/src/ui/components/table/ManagedTable.tsx @@ -155,7 +155,7 @@ type ManagedTableState = { }; const Container = styled(FlexColumn)<{canOverflow?: boolean}>((props) => ({ - overflow: props.canOverflow ? 'scroll' : 'visible', + overflow: props.canOverflow ? 'auto' : 'visible', flexGrow: 1, height: '100%', }));