Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openstack-uicore-foundation",
"version": "5.0.58",
"version": "5.0.60-beta.0",
"description": "ui reactjs components for openstack marketing site",
"main": "lib/openstack-uicore-foundation.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion src/components/inputs/editor-input-v3.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import JoditEditor from "jodit-react";

const TextEditorV3 = ({
id,
name,
value,
error,
className,
Expand Down Expand Up @@ -66,7 +67,7 @@ const TextEditorV3 = ({
};

return (
<div className="editor-input">
<div className="editor-input" id={id} name={name}>
<JoditEditor
ref={editor}
key={value}
Expand Down
3 changes: 2 additions & 1 deletion src/components/inputs/upload-input-v3/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const UploadInputV3 = ({
onUploadStart = null,
djsConfig,
id,
name,
parallelChunkUploads = false,
maxConcurrentChunks = 6,
onError = () => { },
Expand Down Expand Up @@ -326,7 +327,7 @@ const UploadInputV3 = ({
};

return (
<Box className="upload-input-v3">
<Box className="upload-input-v3" id={id} name={name}>
{label && (
<Typography variant="subtitle1" fontWeight={600} gutterBottom>
{label}
Expand Down
2 changes: 2 additions & 0 deletions src/components/mui/addon-type-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import { querySummitAddons } from "../../utils/query-actions";

const AddonTypeSelect = ({
value,
name,
placeholder = "Select...",
onChange,
inputProps = {}
Expand All @@ -41,6 +42,7 @@ const AddonTypeSelect = ({
return (
<Select
fullWidth
name={name}
value={value}
onChange={handleChange}
displayEmpty
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const MuiFormikAddonTypeSelect = ({
return (
<AddonTypeSelect
value={field.value || ""}
name={name}
onChange={helpers.setValue}
placeholder={placeholder}
inputProps={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ const MuiFormikAsyncAutocomplete = ({
renderInput={(params) => (
<TextField
{...params}
name={name}
placeholder={placeholder}
variant="outlined"
error={Boolean(error)}
Expand Down
1 change: 1 addition & 0 deletions src/components/mui/formik-inputs/mui-formik-text-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const FormikTextEditor = ({ name, label = "", options = {}, licence, ...props })
)}
<TextEditorV3
id={name}
name={name}
value={field.value}
options={mergedOptions}
onChange={(e) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ const SponsorshipsBySummitSelectMUI = ({
<Select
multiple
fullWidth
name={name}
value={selectedValues}
onChange={handleChange}
input={<OutlinedInput />}
Expand Down
Loading