Skip to content

Commit

Permalink
fix(web): correct placeholder text for project search (#1290)
Browse files Browse the repository at this point in the history
  • Loading branch information
airslice authored Nov 29, 2024
1 parent 564eb7f commit 2d6e55a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const Projects: FC<{ workspaceId?: string }> = ({ workspaceId }) => {
layout={layout}
onLayoutChange={handleLayoutChange}
showSearch
searchPlaceholder={t("Search in all assets library")}
searchPlaceholder={t("Search project")}
onSearch={handleSearch}
/>
{filtedProjects?.length ? (
Expand Down
1 change: 1 addition & 0 deletions web/src/services/i18n/translations/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ First Created: ''
Last Updated: ''
New Project: ''
Import: ''
Search project: ''
All projects: ''
Search Result for: ''
Project Name: ''
Expand Down
1 change: 1 addition & 0 deletions web/src/services/i18n/translations/ja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ First Created: 最初の作成日
Last Updated: 最終更新日
New Project: 新規プロジェクト
Import: インポート
Search project: プロジェクトを検索
All projects: すべてのプロジェクト
Search Result for: 検索結果
Project Name: プロジェクト名
Expand Down

0 comments on commit 2d6e55a

Please sign in to comment.