Remove placeholder "learn more" link from excluded status setting.
This commit is contained in:
parent
f60c96b572
commit
564b618f62
|
@ -6,11 +6,6 @@ import { __, sprintf } from '@wordpress/i18n';
|
|||
import { applyFilters } from '@wordpress/hooks';
|
||||
import interpolateComponents from 'interpolate-components';
|
||||
|
||||
/**
|
||||
* WooCommerce dependencies
|
||||
*/
|
||||
import { Link } from '@woocommerce/components';
|
||||
|
||||
/**
|
||||
* Internal dependencies
|
||||
*/
|
||||
|
@ -61,12 +56,11 @@ export const analyticsSettings = applyFilters( SETTINGS_FILTER, [
|
|||
helpText: interpolateComponents( {
|
||||
mixedString: __(
|
||||
'Orders with these statuses are excluded from the totals in your reports. ' +
|
||||
'The {{strong}}Refunded{{/strong}} status can not be excluded. {{moreLink}}Learn more{{/moreLink}}',
|
||||
'The {{strong}}Refunded{{/strong}} status can not be excluded.',
|
||||
'woocommerce-admin'
|
||||
),
|
||||
components: {
|
||||
strong: <strong />,
|
||||
moreLink: <Link href="#" type="external" />, // @todo This needs to be replaced with a real link.
|
||||
},
|
||||
} ),
|
||||
initialValue:
|
||||
|
|
Loading…
Reference in New Issue