Commit 722a0c30 authored by 邓超's avatar 邓超

fix: 修改工作流编辑器默认值,规则交互优化

parent 518a7f52
Pipeline #65545 passed with stages
......@@ -66,7 +66,7 @@ const RuleConfig = props => {
let ednIndex = document.getElementById('ruleText').selectionEnd;
let rangeIndex = document.getElementById('ruleText').selectionStart;
console.log(ednIndex, rangeIndex, 'endene');
setRule(`${rule.slice(0, rangeIndex)} ${text} ${rule.slice(rangeIndex)}`);
setRule(`${rule.slice(0, rangeIndex)}${text}${rule.slice(rangeIndex)}`);
rangeIndex += text.toString().length;
ruleText.current.focus();
};
......
......@@ -175,7 +175,12 @@ iframe {
.ant-spin-container {
height: 100%;
}
textarea.ant-input {
border:1px solid #d9d9d9 ;
}
border: 1px solid #d9d9d9;
}
.ant-tooltip-content {
position: static !important;
}
}
\ No newline at end of file
......@@ -351,7 +351,7 @@ const FlowChart = props => {
WebPage: '',
FeedbackName: '',
Transferable: 0,
EventsInformation: 1,
EventsInformation: 0,
IsSendMessage: 1,
IsSave: 0,
AutoClose: '否',
......
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