There is a screen corruption issue with menu links appearing blurred in the Modern User Experience (UX / MUX). Characters in links appear like double vision. This may also be noticed in other areas outside of Menus such as Custom Investment links or other modules on investments. What is causing the behavior with links not loading properly?
|
|
STEPS TO REPRODUCE:
Expected Results: Link name is shown on the page.
Actual Results: Link name is overlapped and a broken image icon is also shown.
Release : 15.9.2, 15.9.3, 16.0.0
Component : Menu Links view, Link Module in projects, Link Module in Ideas
Browser: Chrome, Edge, Safari, Firefox
All environments (Prod, Test, Sandbox, Stage, Development)
This is a defect DE63557
Reviewing the browser trace shows CONTENT_SECURITY_POLICY validation with an error "Refused to load the image... because it violates the following Content Security Policy directive"
Fixed in 15.9.3.3 and 16.0.1
This is applicable until Clarity is upgraded to 16.0.1.
UPDATE
cmn_option_values
SET
value = REPLACE(value, 'img-src ##domains## example.com data:;','img-src ##domains## example.com *.gstatic.com data:;')
WHERE
option_id =(
SELECT
id
FROM
cmn_options
WHERE
option_code = 'CONTENT_SECURITY_POLICY_HEADER')
update
cmn_option_values
set
value = replace(value, 'img-src ##domains## example.com data:;','img-src ##domains## example.com *.gstatic.com data:;')
where
option_id = (
select
id
from
cmn_options
where
option_code = 'CONTENT_SECURITY_POLICY_HEADER')