Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Forms: rename "URL" field to "Website" and update icon #40994

Merged
merged 4 commits into from
Jan 14, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Switch to globe icon
  • Loading branch information
simison committed Jan 14, 2025
commit 2cc8c8a7b671f407c24d5969b4dcc70809a3d7b1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createBlock } from '@wordpress/blocks';
import { Path, Icon } from '@wordpress/components';
import { __, _x } from '@wordpress/i18n';
import { link } from '@wordpress/icons';
import { globe } from '@wordpress/icons';
import { filter, isEmpty, map, startsWith, trim } from 'lodash';
import JetpackField from './components/jetpack-field';
import JetpackFieldCheckbox from './components/jetpack-field-checkbox';
Expand Down Expand Up @@ -419,7 +419,7 @@ export const childBlocks = [
description: __( 'Collect a website address from your site visitors.', 'jetpack-forms' ),
icon: (
<Icon
icon={ link }
icon={ globe }
style={ {
fill: getIconColor(),
} }
Expand Down
Loading