Skip to content

Commit

Permalink
fix: address CR
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent committed Jul 6, 2024
1 parent b9b1030 commit db118f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions packages/ui/src/components/ContextMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default {
}
</script>
<style>
<style scoped>
.context-menu-background {
position: fixed;
z-index: 1;
Expand All @@ -169,12 +169,13 @@ export default {
.context-menu {
position: fixed;
z-index: 1000;
z-index: 1;
border: 1px solid var(--menu-border-color);
box-shadow: 0 0 1rem 0 var(--box-shadow-color);
border-radius: 0.3rem;
min-width: 15rem;
padding: 5px 0;
padding-top: 5px;
padding-bottom: 5px;
background: var(--background-color);
overflow-y: auto;
left: -9999px;
Expand Down Expand Up @@ -223,5 +224,4 @@ button.context-menu-item > i {
font-size: 0.5rem;
color: var(--button-text-color);
}
</style>
4 changes: 3 additions & 1 deletion packages/ui/src/components/ResponsePanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@ import {
setEnvironmentVariable,
getAlertConfirmPromptContainer,
getStatusText,
bufferToString, timeAgo, responseStatusColorMapping,
bufferToString,
timeAgo,
responseStatusColorMapping,
} from '@/helpers'
import { emitter } from '@/event-bus'
import {JSONPath} from 'jsonpath-plus'
Expand Down

0 comments on commit db118f0

Please sign in to comment.