[autofix.ci] apply automated fixes (attempt 2/3)

This commit is contained in:
autofix-ci[bot] 2024-06-26 19:31:25 +00:00 committed by Gabriel Luiz Freitas Almeida
commit 19b05af8d0
3 changed files with 6 additions and 4 deletions

View file

@ -23,7 +23,9 @@ export default function FlowSettingsModal({
const [name, setName] = useState(currentFlow!.name);
const [description, setDescription] = useState(currentFlow!.description);
const [endpoint_name, setEndpointName] = useState(currentFlow!.endpoint_name??"");
const [endpoint_name, setEndpointName] = useState(
currentFlow!.endpoint_name ?? "",
);
const [isSaving, setIsSaving] = useState(false);
const [disableSave, setDisableSave] = useState(true);
function handleClick(): void {
@ -61,7 +63,7 @@ export default function FlowSettingsModal({
if (
(!nameLists.includes(name) && currentFlow?.name !== name) ||
currentFlow?.description !== description ||
((currentFlow?.endpoint_name??"") !== endpoint_name &&
((currentFlow?.endpoint_name ?? "") !== endpoint_name &&
isEndpointNameValid(endpoint_name ?? "", 50))
) {
setDisableSave(false);

View file

@ -303,7 +303,7 @@ export type IconComponentProps = {
export type InputProps = {
name: string | null;
description: string | null;
endpointName?: string|null;
endpointName?: string | null;
maxLength?: number;
setName?: (name: string) => void;
setDescription?: (description: string) => void;

View file

@ -7,7 +7,7 @@ export type FlowType = {
id: string;
data: ReactFlowJsonObject | null;
description: string;
endpoint_name?: string|null;
endpoint_name?: string | null;
style?: FlowStyleType;
is_component?: boolean;
last_tested_version?: string;