Skip to content

Commit

Permalink
thread store and actions into component
Browse files Browse the repository at this point in the history
  • Loading branch information
chriddyp committed Sep 13, 2017
1 parent 94ba662 commit 8bd38a3
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions app/components/Settings/Settings.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,10 @@ class Settings extends Component {
<TableTree
connectionObject={connections[selectedTab]}
preview={preview || {}}
updatePreview={updatePreview}
updatePreview={updatePreview}

getSqlSchema={getSqlSchema}
schemaRequest={schemaRequest}
/>
}
</div>
Expand All @@ -374,7 +377,13 @@ class Settings extends Component {
tablesRequest={tablesRequest}
setTable={setTable}
setIndex={setIndex}
selectedIndex={selectedIndex}
selectedIndex={selectedIndex}

getSqlSchema={getSqlSchema}
schemaRequest={schemaRequest}

runSqlQuery={runSqlQuery}
queryRequest={queryRequest}
/>
</div>
</SplitPane>
Expand Down

0 comments on commit 8bd38a3

Please sign in to comment.