From caa0a22e740bef2fdd27bbd4add57a7fea15e48d Mon Sep 17 00:00:00 2001 From: Nikhil569 <48991799+Nikhil569@users.noreply.github.com> Date: Sat, 24 Aug 2024 01:30:19 +0530 Subject: [PATCH] Shorten method name for OPTIONS and DELETE (#588) --- .../Collection/CollectionItem/RequestMethod/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionItem/RequestMethod/index.js b/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionItem/RequestMethod/index.js index 87315dfea..e41309871 100644 --- a/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionItem/RequestMethod/index.js +++ b/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionItem/RequestMethod/index.js @@ -23,7 +23,9 @@ const RequestMethod = ({ item }) => { return (
- {item.request.method} + + {item.request.method.length > 5 ? item.request.method.substring(0, 3) : item.request.method} +
);