@@ -30,7 +30,7 @@ export class ViewEventContextMenuBuilder {
30
30
private readonly BaseOptions = {
31
31
Pin : {
32
32
type : 'option' ,
33
- label : 'Toggle pinning ' ,
33
+ label : 'Toggle Pinning ' ,
34
34
callback : this . onPin
35
35
} ,
36
36
Delete : {
@@ -53,7 +53,7 @@ export class ViewEventContextMenuBuilder {
53
53
this . BaseOptions . Pin ,
54
54
{
55
55
type : 'option' ,
56
- label : 'Copy request URL' ,
56
+ label : 'Copy Request URL' ,
57
57
callback : ( data : HttpExchange ) => copyToClipboard ( data . request . url )
58
58
} ,
59
59
this . BaseOptions . Delete ,
@@ -64,19 +64,19 @@ export class ViewEventContextMenuBuilder {
64
64
{
65
65
type : 'option' ,
66
66
enabled : isPaidUser ,
67
- label : `Create matching mock rule ` ,
67
+ label : `Create Matching Mock Rule ` ,
68
68
callback : this . onBuildRuleFromExchange
69
69
} ,
70
70
{
71
71
type : 'option' ,
72
72
enabled : isPaidUser ,
73
- label : `Export exchange as HAR` ,
73
+ label : `Export Exchange as HAR` ,
74
74
callback : exportHar
75
75
} ,
76
76
// If you have a preferred default format, we show that option at the top level:
77
77
...( preferredExportFormat && isPaidUser ? [ {
78
78
type : 'option' ,
79
- label : `Copy as ${ getCodeSnippetFormatName ( preferredExportFormat ) } snippet ` ,
79
+ label : `Copy as ${ getCodeSnippetFormatName ( preferredExportFormat ) } Snippet ` ,
80
80
callback : ( data : HttpExchange ) =>
81
81
copyToClipboard (
82
82
generateCodeSnippet ( data , preferredExportFormat )
@@ -85,7 +85,7 @@ export class ViewEventContextMenuBuilder {
85
85
{
86
86
type : 'submenu' ,
87
87
enabled : isPaidUser ,
88
- label : `Copy as code snippet ` ,
88
+ label : `Copy as Code Snippet ` ,
89
89
items : Object . keys ( snippetExportOptions ) . map ( ( snippetGroupName ) => ( {
90
90
type : 'submenu' ,
91
91
label : snippetGroupName ,
0 commit comments