Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/client/cypress/tags.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,6 @@ module.exports = {
"@tag.Visual",
"@tag.Module",
"@tag.Workflows",
"@tag.Debugger",
Comment thread
AmanAgarwal041 marked this conversation as resolved.
Outdated
],
};
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,10 @@ function ApiResponseView(props: Props) {
if (!open) return null;

return (
<ResponseContainer className="t--api-bottom-pane-container" ref={panelRef}>
<ResponseContainer
className="t--api-bottom-pane-container select-text"
ref={panelRef}
>
<Resizer
initialHeight={responseTabHeight}
onResizeComplete={(height: number) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ function JSResponseView(props: Props) {
// Do not render if header tab is selected in the bottom bar.
return open && selectedTab ? (
<ResponseContainer
className="t--js-editor-bottom-pane-container"
className="t--js-editor-bottom-pane-container select-text"
ref={panelRef}
>
<Resizer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export default function Debugger() {

return shouldRender ? (
<TabbedViewContainer
className="t--datasource-bottom-pane-container"
className="t--datasource-bottom-pane-container select-text"
ref={panelRef}
>
<Resizable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ function QueryDebuggerTabs({

return (
<TabbedViewContainer
className="t--query-bottom-pane-container"
className="t--query-bottom-pane-container select-text"
ref={panelRef}
>
<Resizable
Expand Down