mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:41:08 +08:00
SyntaxHighlighter: Safely access clipboard
Use optional chaining to safely access `clipboard` on `global.navigator`
This commit is contained in:
parent
5c1141db47
commit
2b28aa1378
@ -54,7 +54,7 @@ const themedSyntax = memoize(2)((theme) =>
|
|||||||
|
|
||||||
let copyToClipboard: (text: string) => Promise<void>;
|
let copyToClipboard: (text: string) => Promise<void>;
|
||||||
|
|
||||||
if (navigator.clipboard) {
|
if (navigator?.clipboard) {
|
||||||
copyToClipboard = (text: string) => navigator.clipboard.writeText(text);
|
copyToClipboard = (text: string) => navigator.clipboard.writeText(text);
|
||||||
} else {
|
} else {
|
||||||
copyToClipboard = async (text: string) => {
|
copyToClipboard = async (text: string) => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user