Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(dashboard): Tweak Create Workflow copywriting #6971

Merged
merged 2 commits into from
Nov 12, 2024
Merged
Changes from 1 commit
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
18 changes: 8 additions & 10 deletions apps/dashboard/src/components/create-workflow-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,15 @@ export const CreateWorkflowButton = (props: CreateWorkflowButtonProps) => {
<SheetTitle>Create workflow</SheetTitle>
<div>
<SheetDescription>
Workflows manage event-driven notifications across multiple channels in a version-controlled flow, with
the ability to manage preference for each subscriber.
Workflows manage event-driven notifications across channels.{' '}
<Link
target="_blank"
to="https://docs.novu.co/concepts/workflows"
className="text-foreground-400 inline-flex items-center text-sm underline"
>
Learn more <RiExternalLinkLine className="inline size-4" />
</Link>
</SheetDescription>
<Link
target="_blank"
to="https://docs.novu.co/concepts/workflows"
className="text-foreground-400 flex items-center text-sm underline"
>
Learn more <RiExternalLinkLine className="inline size-4" />
</Link>
</div>
</SheetHeader>
<Separator />
Expand Down Expand Up @@ -127,7 +126,6 @@ export const CreateWorkflowButton = (props: CreateWorkflowButtonProps) => {
<InputField>
<Input
{...field}
autoFocus
onChange={(e) => {
field.onChange(e);
form.setValue('workflowId', slugify(e.target.value));
Expand Down
Loading