diff --git a/desktop/plugins/public/databases/index.tsx b/desktop/plugins/public/databases/index.tsx index 9bce250e7..2fd83249f 100644 --- a/desktop/plugins/public/databases/index.tsx +++ b/desktop/plugins/public/databases/index.tsx @@ -41,6 +41,7 @@ import { Layout, useMemoize, Toolbar, + theme, } from 'flipper-plugin'; import { Select, @@ -84,7 +85,6 @@ const ErrorBar = styled.div({ lineHeight: '26px', textAlign: 'center', }); -const QueryHistoryManagedTable = styled(ManagedTable)({paddingLeft: 16}); const PageInfoContainer = styled(Layout.Horizontal)({alignItems: 'center'}); type DatabasesPluginState = { @@ -189,7 +189,7 @@ const QueryHistory = React.memo(({history}: {history: Array}) => { return ( - + - - Row id: {query.id} - + + Row id: {query.id} ); } else if (query.count && query.count !== null) { return ( - - - Rows affected: {query.count} - + + Rows affected: {query.count} ); } else { @@ -1144,7 +1140,7 @@ export function Component() { return ( - + @@ -1171,8 +1167,8 @@ export function Component() { {state.viewMode === 'data' || state.viewMode === 'structure' || state.viewMode === 'tableInfo' ? ( - - Database + + Database - Table + Table - { +