add missing translations (#7073)

Co-authored-by: Mary Hipp <maryhipp@Marys-MacBook-Air.local>
This commit is contained in:
Mary Hipp Rogers
2024-10-08 20:07:00 -04:00
committed by GitHub
parent e20d964b59
commit 0d7edbce25
2 changed files with 3 additions and 3 deletions

View File

@@ -44,12 +44,12 @@ export const ActiveWorkflow = () => {
<Spacer />
{mode === 'edit' && <SaveWorkflowButton />}
<ModeToggle />
<Tooltip label="Clear workflow">
<Tooltip label={t('nodes.clearWorkflow')}>
<IconButton
onClick={handleNewWorkflow}
variant="outline"
size="sm"
aria-label="Clear workflow"
aria-label={t('nodes.clearWorkflow')}
icon={<PiXBold />}
colorScheme="error"
/>

View File

@@ -28,7 +28,7 @@ export const WorkflowName = () => {
)}
{isTouched && mode === 'edit' && (
<Tooltip label="Workflow has unsaved changes">
<Tooltip label={t('nodes.newWorkflowDesc2')}>
<Flex>
<Icon as={PiDotOutlineFill} boxSize="20px" sx={{ color: 'invokeYellow.500' }} />
</Flex>