Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified src/web/public/favicon.ico
Binary file not shown.
Binary file modified src/web/public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/web/public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 16 additions & 12 deletions src/web/src/views/workspace/WSEditorCommandArgumentsContent.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import {
styled,
Alert,
Box,
Button,
Checkbox,
ButtonBase,
CardContent,
Checkbox,
Dialog,
DialogActions,
DialogContent,
Expand All @@ -15,13 +14,23 @@ import {
LinearProgress,
Radio,
RadioGroup,
styled,
Switch,
TextField,
Typography,
TypographyProps,
} from "@mui/material";
import { ChevronRight } from "@mui/icons-material";
import AddIcon from "@mui/icons-material/Add";
import ArrowBackIosIcon from "@mui/icons-material/ArrowBackIos";
import CallSplitSharpIcon from "@mui/icons-material/CallSplitSharp";
import EditIcon from "@mui/icons-material/Edit";
import ImportExportIcon from "@mui/icons-material/ImportExport";

import axios from "axios";
import React, { useState, useEffect } from "react";
import pluralize from "pluralize";
import React, { useEffect, useState } from "react";
import WSECArgumentSimilarPicker, { ArgSimilarTree, BuildArgSimilarTree } from "./argument/WSECArgumentSimilarPicker";
import {
CardTitleTypography,
ExperimentalTypography,
Expand All @@ -34,13 +43,6 @@ import {
StableTypography,
SubtitleTypography,
} from "./WSEditorTheme";
import ArrowBackIosIcon from "@mui/icons-material/ArrowBackIos";
import EditIcon from "@mui/icons-material/Edit";
import ImportExportIcon from "@mui/icons-material/ImportExport";
import CallSplitSharpIcon from "@mui/icons-material/CallSplitSharp";
import AddIcon from "@mui/icons-material/Add";
import WSECArgumentSimilarPicker, { ArgSimilarTree, BuildArgSimilarTree } from "./argument/WSECArgumentSimilarPicker";
import pluralize from "pluralize";

function WSEditorCommandArgumentsContent(props: {
commandUrl: string;
Expand Down Expand Up @@ -1319,10 +1321,11 @@ function ArgumentDialog(props: {
<TextField
id="longSummary"
label="Long Summary"
helperText="Please add long summer in lines."
helperText="Please add long summary in lines."
type="text"
fullWidth
multiline
rows={4}
variant="standard"
value={longHelp}
onChange={(event: any) => {
Expand Down Expand Up @@ -1850,6 +1853,7 @@ function ArgumentPropsReviewer(props: {
{arg.hide && (
<PropHiddenArgOptionTypography sx={{ flexShrink: 0 }}>{argOptionsString}</PropHiddenArgOptionTypography>
)}
<ChevronRight />
</ButtonBase>
<Box sx={{ flexGrow: 1 }} />
{arg.stage === "Preview" && (
Expand Down Expand Up @@ -2655,4 +2659,4 @@ const DecodeArgs = (argGroups: any[]): { args: CMDArg[]; clsArgDefineMap: ClsArg

export default WSEditorCommandArgumentsContent;
export { DecodeArgs };
export type { CMDArg, ClsArgDefinitionMap };
export type { ClsArgDefinitionMap, CMDArg };
3 changes: 2 additions & 1 deletion src/web/src/views/workspace/WSEditorCommandContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1053,10 +1053,11 @@ class CommandDialog extends React.Component<CommandDialogProps, CommandDialogSta
<TextField
id="longSummary"
label="Long Summary"
helperText="Please add long summer in lines."
helperText="Please add long summary in lines."
type="text"
fullWidth
multiline
rows={4}
variant="standard"
value={longHelp}
onChange={(event: any) => {
Expand Down
3 changes: 2 additions & 1 deletion src/web/src/views/workspace/WSEditorCommandGroupContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -484,10 +484,11 @@ class CommandGroupDialog extends React.Component<CommandGroupDialogProps, Comman
<TextField
id="longSummary"
label="Long Summary"
helperText="Please add long summer in lines."
helperText="Please add long summary in lines."
type="text"
fullWidth
multiline
rows={4}
variant="standard"
value={longHelp}
onChange={(event: any) => {
Expand Down
Loading