Commit 81932fcd authored by Fabien Manière's avatar Fabien Manière

to prevent the issue: avoid close modal on click outside modal

parent 71928b67
Pipeline #4195 failed with stage
in 0 seconds
...@@ -218,6 +218,7 @@ folderCpt = here.component "folderCpt" cpt where ...@@ -218,6 +218,7 @@ folderCpt = here.component "folderCpt" cpt where
-- // Modals // -- // Modals //
B.baseModal B.baseModal
{ isVisibleBox: isBoxVisible { isVisibleBox: isBoxVisible
, hasCollapsibleBackground: false
, noBody: true , noBody: true
, noHeader: true , noHeader: true
, modalClassName: "forest-tree-node-modal" , modalClassName: "forest-tree-node-modal"
......
...@@ -345,6 +345,7 @@ nodeSpanCpt = here.component "nodeSpan" cpt ...@@ -345,6 +345,7 @@ nodeSpanCpt = here.component "nodeSpan" cpt
B.baseModal B.baseModal
{ isVisibleBox: isBoxVisible { isVisibleBox: isBoxVisible
, hasCollapsibleBackground: false
, noBody: true , noBody: true
, noHeader: true , noHeader: true
, modalClassName: "forest-tree-node-modal" , modalClassName: "forest-tree-node-modal"
......
...@@ -68,6 +68,7 @@ loginCpt = here.component "login" cpt where ...@@ -68,6 +68,7 @@ loginCpt = here.component "login" cpt where
B.baseModal B.baseModal
{ isVisibleBox: visible { isVisibleBox: visible
, title: Just "GarganText Ecosystem Explorer" , title: Just "GarganText Ecosystem Explorer"
, hasCollapsibleBackground: false
, size: ExtraLargeModalSize , size: ExtraLargeModalSize
, modalClassName: "login-modal" , modalClassName: "login-modal"
} }
......
...@@ -70,6 +70,7 @@ treeSearchCpt = here.component "treeSearch" cpt where ...@@ -70,6 +70,7 @@ treeSearchCpt = here.component "treeSearch" cpt where
B.baseModal B.baseModal
{ isVisibleBox: visible { isVisibleBox: visible
, title: Just "Search in tree" , title: Just "Search in tree"
, hasCollapsibleBackground: false
, size: MediumModalSize , size: MediumModalSize
, modalClassName: "" , modalClassName: ""
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment