Skip to content

Commit eb8d829

Browse files
authored
Merge pull request #872 from getmaxun/misc-fixes
fix: proper saving text after edit
2 parents f2453a3 + 22c1add commit eb8d829

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/robot/pages/RobotConfigPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export const RobotConfigPage: React.FC<RobotConfigPageProps> = ({
182182
boxShadow: 'none',
183183
}}
184184
>
185-
{isLoading ? t("buttons.saving") : (saveButtonText || t("buttons.save"))}
185+
{isLoading ? t("Saving...") : (saveButtonText || t("buttons.save"))}
186186
</Button>
187187
)}
188188
</Box>

0 commit comments

Comments
 (0)