Add workflows settings in start node (#1270)

This commit is contained in:
Shuchang Zheng
2024-11-26 10:41:18 -08:00
committed by GitHub
parent 61f94af7f3
commit e0aadac962
13 changed files with 275 additions and 42 deletions

View File

@@ -10,12 +10,13 @@ import {
type Props = {
value: ProxyLocation | null;
onChange: (value: ProxyLocation) => void;
className?: string;
};
function ProxySelector({ value, onChange }: Props) {
function ProxySelector({ value, onChange, className }: Props) {
return (
<Select value={value ?? ""} onValueChange={onChange}>
<SelectTrigger className="w-48">
<SelectTrigger className={className}>
<SelectValue placeholder="Proxy Location" />
</SelectTrigger>
<SelectContent>