#245: Loads of new introduction features, including a basic app selector

This commit is contained in:
frikky
2022-01-03 02:39:22 +01:00
parent d1eb9e6347
commit 0f2c71a721
9 changed files with 371 additions and 39 deletions
File diff suppressed because one or more lines are too long
+1
View File
@@ -21,6 +21,7 @@ import {
IconButton,
Grid,
} from "@material-ui/core";
import {
MeetingRoom as MeetingRoomIcon,
Settings as SettingsIcon,
+3 -3
View File
@@ -978,8 +978,8 @@ const ParsedAction = (props) => {
return helperText
}
console.log("AUTH: ", authenticationType)
if (authenticationType.type === "oauth2") {
//console.log("AUTH: ", authenticationType)
if (authenticationType !== undefined && authenticationType !== null && authenticationType.type === "oauth2") {
return (
<Typography variant="body1" color="textSecondary" style={{marginTop: 15}}>
You must authenticate before using oauth2 apps.
@@ -1082,7 +1082,7 @@ const ParsedAction = (props) => {
) {
placeholder = data.example;
if (data.name === "url" && data.value.length === 0) {
if (data.name === "url" && data.value !== undefined && data.value !== null && data.value.length === 0) {
data.value = data.example;
}
}