Skip to content

Commit

Permalink
3208: Fixed coding standards issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tuj committed Dec 19, 2024
1 parent 29c8869 commit 71fe367
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/feed-sources/feed-source-form.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import FormInput from "../util/forms/form-input";
import CalendarApiFeedType from "./templates/calendar-api-feed-type";
import NotifiedFeedType from "./templates/notified-feed-type";
import EventDatabaseApiFeedType from "./templates/event-database-feed-type";
import ColiboFeedType from "./templates/colibo-feed-type.jsx";
import ColiboFeedType from "./templates/colibo-feed-type";

/**
* The feed-source form component.
Expand Down
2 changes: 1 addition & 1 deletion src/components/feed-sources/templates/colibo-feed-type.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useTranslation } from "react-i18next";
import { Alert } from "react-bootstrap";
import MultiselectFromEndpoint from "../../slide/content/multiselect-from-endpoint";
import ConfigLoader from "../../../config-loader";
import FormInput from "../../util/forms/form-input.jsx";
import FormInput from "../../util/forms/form-input";

const ColiboFeedType = ({
feedSourceId,
Expand Down
1 change: 1 addition & 0 deletions src/components/slide/content/multiselect-from-endpoint.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { displayError } from "../../util/list/toast-component/display-toast";
* @param {string} props.optionsEndpoint - Endpoint from which to fetch the options.
* @param {boolean} props.singleSelect - Allow only to select one option.
* @param {boolean} props.disableSearch - Disable search. Defaults to true.
* @param {string | null} props.helpText - Help text.
* @returns {object} - The FeedSelector component.
*/
function MultiselectFromEndpoint({
Expand Down

0 comments on commit 71fe367

Please sign in to comment.