Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export default function DailyBundleSizeChart({ repo }: DailyBundleSizeChartProps
filterSelectedOptions
size="small"
renderInput={(params) => (
<TextField {...params} placeholder="Search and select bundles..." />
<TextField {...params} placeholder="Search and select bundles" />
)}
sx={{ mb: 1 }}
/>
Expand Down
4 changes: 2 additions & 2 deletions apps/code-infra-dashboard/src/components/PackageSearchbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface PackageSearchbarProps {
export default function PackageSearchbar(props: PackageSearchbarProps) {
const {
onPackageSelect,
placeholder = 'Search for packages...',
placeholder = 'Search for packages',
label = 'Package name',
sx,
} = props;
Expand Down Expand Up @@ -72,7 +72,7 @@ export default function PackageSearchbar(props: PackageSearchbarProps) {
options={searchResults}
getOptionLabel={(option) => (typeof option === 'string' ? option : option.name)}
loading={isSearching}
loadingText="Searching packages..."
loadingText="Searching packages"
noOptionsText="Type to search for packages"
freeSolo
filterOptions={(x) => x}
Expand Down
2 changes: 1 addition & 1 deletion apps/code-infra-dashboard/src/views/NpmDownloads.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default function NpmDownloads() {

<PackageSearchbar
onPackageSelect={handleAddPackage}
placeholder="Search and select packages..."
placeholder="Search and select packages"
label="Package names"
/>
</Paper>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function TextInputCopy() {
value={text}
onChange={(event) => setText(event.target.value)}
className={styles.input}
placeholder="Enter text to copy..."
placeholder="Enter text to copy"
/>
<button type="button" onClick={copy} className={styles.button}>
{recentlySuccessful ? '✓ Copied!' : 'Copy'}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ The loader generates a structured data format:
"slug": "code-highlighter",
"path": "./code-highlighter/page.mdx",
"title": "Code Highlighter",
"description": "Component for displaying code...",
"description": "Component for displaying code",
"keywords": ["code", "syntax", "highlighting"],
"sections": {
"features": {
Expand Down
Loading