diff --git a/backend/go-app/go.mod b/backend/go-app/go.mod
index 3e81b6eb..ecb1116b 100644
--- a/backend/go-app/go.mod
+++ b/backend/go-app/go.mod
@@ -24,7 +24,7 @@ require (
github.com/h2non/filetype v1.1.3
github.com/nirasan/go-oauth-pkce-code-verifier v0.0.0-20170819232839-0fbfe93532da // indirect
github.com/satori/go.uuid v1.2.0
- github.com/shuffle/shuffle-shared v0.2.74
+ github.com/shuffle/shuffle-shared v0.2.77
go4.org v0.0.0-20201209231011-d4a079459e60 // indirect
golang.org/x/crypto v0.0.0-20220112180741-5e0467b6c7ce
google.golang.org/api v0.65.0
diff --git a/frontend/src/components/WelcomeForm.jsx b/frontend/src/components/WelcomeForm.jsx
index 58a1e8e9..65579798 100644
--- a/frontend/src/components/WelcomeForm.jsx
+++ b/frontend/src/components/WelcomeForm.jsx
@@ -109,7 +109,7 @@ const WelcomeForm = (props) => {
const data = {
"tutorial": "welcome",
"firstname": name,
- "role": role,
+ "company_role": role,
"user_id": userId,
}
@@ -318,6 +318,9 @@ const WelcomeForm = (props) => {
This data will be used within the product and NOT be shared unless cloud synchronization is configured.
*/}
+
+ Welcome to Shuffle!
+
We need some more information in order to understand how we best can help you find relevant Usecases in Shuffle.
@@ -326,6 +329,7 @@ const WelcomeForm = (props) => {
required
style={{width: "100%", marginTop: 0,}}
placeholder="Name"
+ autoFocus
label="Name"
type="name"
id="standard-required"
diff --git a/frontend/src/views/AngularWorkflow.jsx b/frontend/src/views/AngularWorkflow.jsx
index 67aebd13..1406d224 100644
--- a/frontend/src/views/AngularWorkflow.jsx
+++ b/frontend/src/views/AngularWorkflow.jsx
@@ -2722,8 +2722,7 @@ const AngularWorkflow = (defaultprops) => {
curaction.parameters[key].options.length > 0 &&
curaction.parameters[key].value === ""
) {
- curaction.parameters[key].value =
- curaction.parameters[key].options[0];
+ curaction.parameters[key].value = curaction.parameters[key].options[0];
}
}
} else {
@@ -2960,6 +2959,8 @@ const AngularWorkflow = (defaultprops) => {
"uid",
"uuid",
"team id",
+ "message id",
+ "message_id",
],
title: ["title", "name", "message"],
description: ["description", "explanation", "story", "details"],
@@ -2980,7 +2981,7 @@ const AngularWorkflow = (defaultprops) => {
};
// 1. Find the right synonym
- // 2.
+ // 2. Replace with an autocomplete if it exists
var selectedsynonyms = [paramname];
for (const [key, value] of Object.entries(synonyms)) {
if (key === paramname || value.includes(paramname)) {
diff --git a/frontend/src/views/AppCreator.jsx b/frontend/src/views/AppCreator.jsx
index fa92adbf..ec45b612 100644
--- a/frontend/src/views/AppCreator.jsx
+++ b/frontend/src/views/AppCreator.jsx
@@ -3850,7 +3850,7 @@ const AppCreator = (defaultprops) => {
Enable Fileupload
) : null}
- {currentActionMethod === "GET" ? (
+ {/*currentActionMethod === "GET" ? (
- ) : null}
+ ) : null*/}
{fileUploadEnabled ? (