Skip to content

Commit

Permalink
fix: translation keys (#6530)
Browse files Browse the repository at this point in the history
  • Loading branch information
vamsikrishnamathala authored Jan 31, 2025
1 parent 7601fce commit 1a7ab6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/core/components/modules/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export const ModuleForm: React.FC<Props> = (props) => {
: t("update_module")
: isSubmitting
? t("creating")
: t("create_module")}
: t("project_module.create_module")}
</Button>
</div>
</form>
Expand Down
2 changes: 1 addition & 1 deletion web/core/components/project/search-projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const ProjectSearch: FC = observer(() => {
<input
ref={inputRef}
className="w-full max-w-[234px] border-none bg-transparent text-sm text-custom-text-100 placeholder:text-custom-text-400 focus:outline-none"
placeholder={t("common.search.placeholder")}
placeholder={t("common.search.label")}
value={searchQuery}
onChange={(e) => updateSearchQuery(e.target.value)}
onKeyDown={handleInputKeyDown}
Expand Down

0 comments on commit 1a7ab6b

Please sign in to comment.