Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 6f9845f1 authored by g4m4's avatar g4m4
Browse files

[CODE] Fix unitialised enum value

parent 77cf5799
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ struct FIXITCORE_API FFixItConnectionSettings ...@@ -35,7 +35,7 @@ struct FIXITCORE_API FFixItConnectionSettings
FString URL; FString URL;
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Connection Settings", meta = (ToolTip = "The issue tracking platform to be used for this project")) UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Connection Settings", meta = (ToolTip = "The issue tracking platform to be used for this project"))
EFixItBackendType Backend; EFixItBackendType Backend = EFixItBackendType::EFixItBackendType_JIRA;
void SetFromString(const FString& data); void SetFromString(const FString& data);
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment