mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 08:21:53 +00:00
fix(plugin-workflow): fix schedule config component witdh (#2461)
This commit is contained in:
parent
9b00aa9cc0
commit
5581b4f872
@ -25,9 +25,10 @@ function getNumberOption(v) {
|
||||
}
|
||||
|
||||
function getRepeatTypeValue(v) {
|
||||
let option;
|
||||
switch (typeof v) {
|
||||
case 'number':
|
||||
const option = getNumberOption(v);
|
||||
option = getNumberOption(v);
|
||||
return option ? option.value : 'none';
|
||||
case 'string':
|
||||
return 'cron';
|
||||
@ -48,6 +49,7 @@ function CommonRepeatField({ value, onChange }) {
|
||||
min={1}
|
||||
addonBefore={t('Every')}
|
||||
addonAfter={t(option.unitText)}
|
||||
className="auto-width"
|
||||
/>
|
||||
);
|
||||
}
|
||||
@ -78,6 +80,7 @@ export function RepeatField({ value = null, onChange }) {
|
||||
gap: 0.5em;
|
||||
|
||||
.react-js-cron {
|
||||
width: 100%;
|
||||
padding: 0.5em 0.5em 0 0.5em;
|
||||
border: 1px dashed #ccc;
|
||||
|
||||
@ -92,10 +95,16 @@ export function RepeatField({ value = null, onChange }) {
|
||||
margin: 0 0.5em 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
.react-js-cron-week-days {
|
||||
> span {
|
||||
min-width: 2em;
|
||||
}
|
||||
}
|
||||
}
|
||||
`}
|
||||
>
|
||||
<Select value={typeValue} onChange={onTypeChange}>
|
||||
<Select value={typeValue} onChange={onTypeChange} className="auto-width">
|
||||
{RepeatOptions.map((item) => (
|
||||
<Select.Option key={item.value} value={item.value}>
|
||||
{t(item.text)}
|
||||
|
@ -203,7 +203,8 @@ export const ScheduleConfig = () => {
|
||||
'x-component-props': {
|
||||
className: css`
|
||||
.ant-input-number {
|
||||
width: 4em;
|
||||
width: auto;
|
||||
min-width: 6em;
|
||||
}
|
||||
|
||||
.ant-picker {
|
||||
|
Loading…
Reference in New Issue
Block a user