Skip to content

Commit

Permalink
fix: provice can be not changed in data (#3666)
Browse files Browse the repository at this point in the history
* Error creating events by calendar if End Date before Start Date or End time is before Start time

* fix:Status service view includes extraneous top margin above heading

* fix: add and edit notification type cancel state

* fix:Save button in queue editor disables incorrectly on role changes

* feat:form UI schema code completion hints based on the data schema

* fix: scroll in form editor and help content.

* fix:icon accessibilty issue and web-component upgrade issue

* fix: Form -- All uppercase letter in Input label in schema, but in preview show input label in Pascal Case

* fix: mobile view bottom up lay out

* fix: provice can be not changed in data

---------

Co-authored-by: Shuang chen <shuangchen@AthenaMacBook.local>
Co-authored-by: Shuang chen <shuangchen@AthenaMacBook.lan>
Co-authored-by: athena-chen-chen <athena.chen@gov.ab.ca>
  • Loading branch information
4 people authored Nov 4, 2024
1 parent 2669c36 commit b30fea0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const AddressInputs: React.FC<AddressInputsProps> = ({
testId="address-form-province-dropdown"
ariaLabel={'address-form-province'}
value={address?.subdivisionCode || ''}
onChange={(value) => handleInputChange('province', value)}
onChange={(_, value) => handleInputChange('subdivisionCode', value as string)}
relative={true}
width="25ch"
>
Expand Down

0 comments on commit b30fea0

Please sign in to comment.