mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-04-29 13:03:55 +01:00
Remove debug display
This commit is contained in:
parent
c442a5a20d
commit
72ec5e891e
@ -628,13 +628,14 @@ const DocumentsTabComponent: React.FunctionComponent<{
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const onHideFilterClick = (): Q.Promise<any> => {
|
const onHideFilterClick = (): void => {
|
||||||
|
setIsFilterCreated(false);
|
||||||
|
|
||||||
// this.isFilterExpanded(false);
|
// this.isFilterExpanded(false);
|
||||||
|
|
||||||
$(".filterDocExpanded").removeClass("active");
|
// $(".filterDocExpanded").removeClass("active");
|
||||||
$("#content").removeClass("active");
|
// $("#content").removeClass("active");
|
||||||
$(".queryButton").focus();
|
// $(".queryButton").focus();
|
||||||
return Q();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const onCloseButtonKeyDown: KeyboardEventHandler<HTMLSpanElement> = (event) => {
|
const onCloseButtonKeyDown: KeyboardEventHandler<HTMLSpanElement> = (event) => {
|
||||||
@ -1082,7 +1083,6 @@ const DocumentsTabComponent: React.FunctionComponent<{
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<FluentProvider theme={dataExplorerLightTheme} style={{ height: "100%" }}>
|
<FluentProvider theme={dataExplorerLightTheme} style={{ height: "100%" }}>
|
||||||
{editorState}
|
|
||||||
<div
|
<div
|
||||||
className="tab-pane active"
|
className="tab-pane active"
|
||||||
/* data-bind="
|
/* data-bind="
|
||||||
@ -1209,7 +1209,7 @@ const DocumentsTabComponent: React.FunctionComponent<{
|
|||||||
role="button"
|
role="button"
|
||||||
aria-label="close filter"
|
aria-label="close filter"
|
||||||
tabIndex={0}
|
tabIndex={0}
|
||||||
onClick={() => onHideFilterClick()}
|
onClick={onHideFilterClick}
|
||||||
onKeyDown={onCloseButtonKeyDown}
|
onKeyDown={onCloseButtonKeyDown}
|
||||||
/*data-bind="click: onHideFilterClick, event: { keydown: onCloseButtonKeyDown }"*/
|
/*data-bind="click: onHideFilterClick, event: { keydown: onCloseButtonKeyDown }"*/
|
||||||
>
|
>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user