Add option for the properties form to only update on submit #23

Merged
Siklos merged 5 commits from dev.fixfirefox into dev 2022-08-11 08:37:11 -04:00
Showing only changes of commit 6e2d729961 - Show all commits

View file

@ -30,7 +30,7 @@ export const Properties: React.FC<IPropertiesProps> = (props: IPropertiesProps)
key={props.properties.id}
onSubmit={(event) => props.onSubmit(event, refs)}
>
<input type='submit' className='normal-btn' value='Submit'/>
<input type='submit' className='normal-btn block mx-auto' value='Submit'/>
{ groupInput }
</form>
;