修改流水线名称弹框z-index

This commit is contained in:
caishi 2021-08-03 10:32:40 +08:00
parent 1155d7f7c6
commit 107b916b97
2 changed files with 4 additions and 1 deletions

View File

@ -42,7 +42,7 @@ function PipelineName({visible,onCancel,onOk,value ,branchList}){
</div>
<div className="choosenList mt20">
<span>触发条件:</span>
<Select value={branchValue} style={{width:"150px"}} onChange={(e)=>setBranchValue(e)}>
<Select value={branchValue} dropdownClassName="chooseCon" style={{width:"150px"}} onChange={(e)=>setBranchValue(e)}>
{
branchList && branchList.length>0 && branchList.map((item,key)=>{
return(

View File

@ -379,6 +379,9 @@
}
}
}
.chooseCon.ant-select-dropdown{
z-index: 10002;
}
.choosenList{
display: flex;