Skip to content
This repository was archived by the owner on Feb 28, 2026. It is now read-only.

Commit 066c0ae

Browse files
committed
fix
1 parent 616111d commit 066c0ae

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

  • frontend/server/src/components/dbfragments

frontend/server/src/components/dbfragments/query.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,20 +119,22 @@ const DBQueryFragment = () => {
119119
queryData={queryData}
120120
mSchema={''}
121121
mName={''}
122-
onRefresh={()=>{}}
122+
onRefresh={() => { }}
123123
onFilterChanged={() => { }}
124124
onSortChanged={() => { }}
125-
isInteractive={false} />
125+
isInteractive={false}
126+
isReadOnly={true} />
126127
}
127128
{dbConnection!.type === DBConnType.MONGO &&
128129
<JsonTable
129130
dbConnection={dbConnection!}
130131
queryData={queryData}
131132
mName={''}
132-
onRefresh={()=>{}}
133+
onRefresh={() => { }}
133134
onFilterChanged={() => { }}
134135
onSortChanged={() => { }}
135-
isInteractive={false} />
136+
isInteractive={false}
137+
isReadOnly={true} />
136138
}
137139
</React.Fragment>
138140
: null

0 commit comments

Comments
 (0)