Transformations: Add Numeric Index in Title (#76265)

Add index to transformation title
pull/76282/head
Kyle Cunningham 2 years ago committed by GitHub
parent d25163a645
commit a9becedbbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      public/app/features/dashboard/components/TransformationsEditor/TransformationOperationRow.tsx

@ -160,7 +160,7 @@ export const TransformationOperationRow = ({
<QueryOperationRow
id={id}
index={index}
title={uiConfig.name}
title={`${index + 1} - ${uiConfig.name}`}
draggable
actions={renderActions}
disabled={disabled}

Loading…
Cancel
Save