This is an automated email from the ASF dual-hosted git repository. hugh pushed a commit to branch hugh/dbl-click-title in repository https://gitbox.apache.org/repos/asf/superset.git
commit a8ccf9fba2ab6c05a2ec77e0f9c5704946f065a7 Author: hughhhh <[email protected]> AuthorDate: Tue Feb 16 17:06:57 2021 -0500 save' --- superset-frontend/src/SqlLab/components/TabbedSqlEditors.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/superset-frontend/src/SqlLab/components/TabbedSqlEditors.jsx b/superset-frontend/src/SqlLab/components/TabbedSqlEditors.jsx index 028954b..987ead9 100644 --- a/superset-frontend/src/SqlLab/components/TabbedSqlEditors.jsx +++ b/superset-frontend/src/SqlLab/components/TabbedSqlEditors.jsx @@ -375,7 +375,8 @@ class TabbedSqlEditors extends React.PureComponent { <div data-test="dropdown-toggle-button"> <Dropdown overlay={menu} trigger={['click']} /> </div> - <TabTitle>{qe.title}</TabTitle> <TabStatusIcon tabState={state} />{' '} + <TabTitle onClick={() => console.log('test')}>{qe.title}</TabTitle> + <TabStatusIcon tabState={state} />{' '} </TabTitleWrapper> ); return (
