-
+
+
{
+ e.stopPropagation();
+ if (isReflectionMode) {
+ handleReflection(url, true);
+ } else if (protoFilePath) {
+ handleProtoFileLoad(protoFilePath, true);
+ } else {
+ toast.error('No proto file selected');
+ }
+ }}
+ >
+
-
-
{
- e.stopPropagation();
- if (isReflectionMode) {
- handleReflection(url, true);
- } else if (protoFilePath) {
- handleProtoFileLoad(protoFilePath, true);
- } else {
- toast.error('No proto file selected');
- }
- }}
- >
-
-
- {isReflectionMode ? 'Refresh server reflection' : 'Refresh proto file methods'}
-
-
-
-
{
- e.stopPropagation();
- handleGrpcurl(url);
- }}
- >
-
- Generate grpcurl command
-
-
-
{
- e.stopPropagation();
- if (!item.draft) return;
- onSave();
- }}
- >
-
-
- Save ({saveShortcut})
-
-
-
- {isConnectionActive && isStreamingMethod && (
-
-
-
- Cancel
-
-
- {isClientStreamingMethod && (
-
-
-
- )}
-
- )}
-
- {(!isConnectionActive || !isStreamingMethod) && (
-
{
- e.stopPropagation();
- handleRun(e);
- }}
- >
-
-
- )}
+
+ {isReflectionMode ? 'Refresh server reflection' : 'Refresh proto file methods'}
+
+
+
{
+ e.stopPropagation();
+ handleGrpcurl(url);
+ }}
+ >
+
+ Generate grpcurl command
+
+
+
{
+ e.stopPropagation();
+ if (!item.draft) return;
+ onSave();
+ }}
+ >
+
+
+ Save ({saveShortcut})
+
+
+
+ {isConnectionActive && isStreamingMethod && (
+
+
+
+ Cancel
+
+
+ {isClientStreamingMethod && (
+
+
+
+ )}
+
+ )}
+
+ {(!isConnectionActive || !isStreamingMethod) && (
+
{
+ e.stopPropagation();
+ handleRun(e);
+ }}
+ >
+
+
+ )}
diff --git a/packages/bruno-app/src/components/RequestPane/QueryUrl/index.js b/packages/bruno-app/src/components/RequestPane/QueryUrl/index.js
index 23da07519..c363150d0 100644
--- a/packages/bruno-app/src/components/RequestPane/QueryUrl/index.js
+++ b/packages/bruno-app/src/components/RequestPane/QueryUrl/index.js
@@ -375,7 +375,7 @@ const QueryUrl = ({ item, collection, handleRun }) => {