Skip to content

Commit ebe515b

Browse files
committed
fix: modal close attribute
1 parent a006268 commit ebe515b

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ajax-proxy",
33
"private": true,
44
"description": "Modify your Ajax response to test",
5-
"version": "2.2.4",
5+
"version": "2.2.5",
66
"scripts": {
77
"dev": "pnpm -C ./packages/vue-panels serve",
88
"watch": "run-p watch:lib watch:chrome",

packages/shell-chrome/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "Ajax Proxy",
4-
"version": "2.2.4",
4+
"version": "2.2.5",
55
"description": "Modify your Ajax response to test",
66
"author": "Gj",
77
"icons": {

packages/vue-panels/src/views/interceptor/modal.vue

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
:title="title"
55
:visible.sync="isShow"
66
:before-close="handleClose"
7+
:close-on-click-modal="false"
8+
:close-on-press-escape="false"
79
top="1%"
810
width="80%"
911
>

packages/vue-panels/src/views/redirector/modal.vue

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
:title="title"
55
:visible.sync="isShow"
66
:before-close="handleClose"
7+
:close-on-click-modal="false"
8+
:close-on-press-escape="false"
79
top="1%"
810
width="80%"
911
>

0 commit comments

Comments
 (0)