Skip to content

Commit

Permalink
link to Trigg
Browse files Browse the repository at this point in the history
  • Loading branch information
GabiGrin committed Feb 15, 2024
1 parent f352c37 commit e7dbaaa
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
6 changes: 5 additions & 1 deletion flow-editor/src/visual-node-editor/HelpBubble/HelpBubble.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,13 @@ const mainDocItems = [
link: "https://www.flyde.dev/docs/custom-nodes/",
},
{
title: "TroubleShooting",
title: "Trouble-shooting",
link: "https://www.flyde.dev/docs/troubleshooting/",
},
{
title: "Trigg - Cloud Managed Flyde",
link: "https://www.trigg.dev/?ref=help-menu",
},
];

export const HelpBubble: React.FC<HelpBubbleProps> = () => {
Expand Down
2 changes: 1 addition & 1 deletion stdlib/src/Lists/Collect/Collect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const CollectEditor: MacroEditorComp<CollectConfig> = function CollectEditor({
value={value.count}
onChange={(count) => onChange({ ...value, count })}
valueRenderer={(props) => (
<FormGroup label="Time:" inline>
<FormGroup label="Count:" inline>
<NumericInput
value={props.value.count}
onValueChange={(e) =>
Expand Down
6 changes: 3 additions & 3 deletions website/docs/6-testing-deploying.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ A great example is the standard library, which has some tests that use Flyde flo

Same goes for deployment, you can use any deployment tool you like. You can use a CI/CD pipeline, a serverless framework, or even a simple bash script.

<!-- :::info
If you're looking for a way to deploy your flows as a service, check out [Trigg](https://www.trigg.dev), a serverless platform for Flyde.
::: -->
:::info
If you're looking for a way to deploy your flows as a service, check out [Trigg](https://www.trigg.dev?ref=flyde-docs), a serverless platform for Flyde.
:::
8 changes: 8 additions & 0 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ const config = {
href: "https://play.flyde.dev",
label: "Online Playground",
},
{
href: "https://www.trigg.dev?ref=flyde-header",
label: "Trigg",
},
{
href: "https://github.com/flydelabs/flyde",
label: "GitHub",
Expand Down Expand Up @@ -213,6 +217,10 @@ const config = {
label: "GitHub",
href: "https://github.com/flydelabs/flyde",
},
{
label: "Trigg - Cloud-Managed Flyde for APIs",
href: "https://www.trigg.dev?ref=flyde-footer",
},
],
},
],
Expand Down

0 comments on commit e7dbaaa

Please sign in to comment.