File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed
projects/app/src/web/core/app Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ export type OutLinkSchema<T extends OutlinkAppType = undefined> = {
52
52
// whether the response content is detailed
53
53
responseDetail : boolean ;
54
54
// whether to hide the node status
55
- showNodeStatus : boolean ;
55
+ showNodeStatus ? : boolean ;
56
56
// whether to show the complete quote
57
- showRawSource : boolean ;
57
+ showRawSource ? : boolean ;
58
58
59
59
// response when request
60
60
immediateResponse ?: string ;
Original file line number Diff line number Diff line change @@ -48,12 +48,10 @@ const OutLinkSchema = new Schema({
48
48
default : false
49
49
} ,
50
50
showNodeStatus : {
51
- type : Boolean ,
52
- default : false
51
+ type : Boolean
53
52
} ,
54
53
showRawSource : {
55
- type : Boolean ,
56
- default : false
54
+ type : Boolean
57
55
} ,
58
56
limit : {
59
57
maxUsagePoints : {
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ export const defaultApp: AppDetailType = {
22
22
23
23
export const defaultOutLinkForm : OutLinkEditType = {
24
24
name : '' ,
25
+ showNodeStatus : true ,
25
26
responseDetail : false ,
26
- showNodeStatus : false ,
27
27
showRawSource : false ,
28
28
limit : {
29
29
QPM : 100 ,
You can’t perform that action at this time.
0 commit comments