Skip to content

Commit 71fe367

Browse files
committed
3208: Fixed coding standards issues
1 parent 29c8869 commit 71fe367

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/components/feed-sources/feed-source-form.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import FormInput from "../util/forms/form-input";
1313
import CalendarApiFeedType from "./templates/calendar-api-feed-type";
1414
import NotifiedFeedType from "./templates/notified-feed-type";
1515
import EventDatabaseApiFeedType from "./templates/event-database-feed-type";
16-
import ColiboFeedType from "./templates/colibo-feed-type.jsx";
16+
import ColiboFeedType from "./templates/colibo-feed-type";
1717

1818
/**
1919
* The feed-source form component.

src/components/feed-sources/templates/colibo-feed-type.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useTranslation } from "react-i18next";
44
import { Alert } from "react-bootstrap";
55
import MultiselectFromEndpoint from "../../slide/content/multiselect-from-endpoint";
66
import ConfigLoader from "../../../config-loader";
7-
import FormInput from "../../util/forms/form-input.jsx";
7+
import FormInput from "../../util/forms/form-input";
88

99
const ColiboFeedType = ({
1010
feedSourceId,

src/components/slide/content/multiselect-from-endpoint.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { displayError } from "../../util/list/toast-component/display-toast";
1616
* @param {string} props.optionsEndpoint - Endpoint from which to fetch the options.
1717
* @param {boolean} props.singleSelect - Allow only to select one option.
1818
* @param {boolean} props.disableSearch - Disable search. Defaults to true.
19+
* @param {string | null} props.helpText - Help text.
1920
* @returns {object} - The FeedSelector component.
2021
*/
2122
function MultiselectFromEndpoint({

0 commit comments

Comments
 (0)