From 8a53d92299aa85f8ffe242e60860161013ad344d Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Mon, 28 Dec 2020 16:25:28 -0500 Subject: [PATCH] Change Link to use backstage/core --- .../LabelDataflowInstructionsPage.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/cost-insights/src/components/LabelDataflowInstructionsPage/LabelDataflowInstructionsPage.tsx b/plugins/cost-insights/src/components/LabelDataflowInstructionsPage/LabelDataflowInstructionsPage.tsx index ba5a22e932..c3f4b4f79c 100644 --- a/plugins/cost-insights/src/components/LabelDataflowInstructionsPage/LabelDataflowInstructionsPage.tsx +++ b/plugins/cost-insights/src/components/LabelDataflowInstructionsPage/LabelDataflowInstructionsPage.tsx @@ -15,8 +15,8 @@ */ import React from 'react'; -import { Box, Typography, Link } from '@material-ui/core'; -import { CodeSnippet } from '@backstage/core'; +import { Box, Typography } from '@material-ui/core'; +import { CodeSnippet, Link } from '@backstage/core'; import { AlertInstructionsLayout } from '../AlertInstructionsLayout'; export const LabelDataflowInstructionsPage = () => { @@ -32,7 +32,7 @@ export const LabelDataflowInstructionsPage = () => { In Cloud Dataflow, labels can be added to a job either programmatically or via the command-line when launching a job. Note that GCP has{' '} - + restrictions {' '} on the length and characters that can be used in labels. @@ -46,7 +46,7 @@ export const LabelDataflowInstructionsPage = () => { DataflowPipelineOptions Dataflow jobs using Beam's{' '} - + DataflowPipelineOptions {' '} directly can use the setLabels function to add one or more @@ -79,11 +79,11 @@ sc.optionsAs[DataflowPipelineOptions].setLabels(Map("job-id" -> "my-dataflow-job For more information on specifying options, see the{' '} - + Dataflow documentation {' '} or{' '} - + Scio Scaladoc .