Skip to content

Commit

Permalink
fix: update placeholder text for search and DBLP input fields
Browse files Browse the repository at this point in the history
  • Loading branch information
yueyueL committed Sep 7, 2024
1 parent 02a860a commit 8d8f41d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/pages/PaperCollectionWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function PaperCollectionWindow(props: Props) {
<TextField
fullWidth
variant="outlined"
placeholder={t('Search papers...')}
placeholder={t('Search papers...') || ''}
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
InputProps={{
Expand All @@ -109,7 +109,7 @@ export default function PaperCollectionWindow(props: Props) {
<TextField
fullWidth
variant="outlined"
placeholder={t('Enter DBLP link...')}
placeholder={t('Enter DBLP link...') || ''}
value={dblpLink}
onChange={(e) => setDblpLink(e.target.value)}
InputProps={{
Expand Down

0 comments on commit 8d8f41d

Please sign in to comment.