fix: move add specific days onto the next row and dynamically increased the width of the numbered input (#5406)

* fix: Move Add Specific Days to next line and dynamically increase the width of the numbered input box

* [autofix.ci] apply automated fixes

* Add Release Notes

* Update the release notes summary

* Update width from px to ch

* Update schedule date modal to expand when repeat every number increases

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
ShayanAraghi
2025-08-04 11:23:37 -07:00
committed by GitHub
parent e69235a35b
commit 5d238c238d
2 changed files with 12 additions and 2 deletions

View File

@@ -489,7 +489,11 @@ function RecurringScheduleTooltip({
</Text>
<Input
id="interval"
style={{ width: 40 }}
style={{
minWidth: '7ch',
width: `${String(config.interval || 1).length + 4}ch`,
maxWidth: '12ch',
}}
type="number"
min={1}
onChangeValue={value => updateField('interval', value)}
@@ -626,7 +630,7 @@ export function RecurringSchedulePicker({
<Popover
triggerRef={triggerRef}
style={{ padding: 10, width: 380 }}
style={{ padding: 10, minWidth: 380, width: 'auto', maxWidth: '100%' }}
placement="bottom start"
isOpen={isOpen}
onOpenChange={() => setIsOpen(false)}

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [ShayanAraghi]
---
In the schedule date selection, move add specific days onto the next row and dynamically increased the width of the numbered input.