mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +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>;
|
||||
|
||||
if (navigator.clipboard) {
|
||||
if (navigator?.clipboard) {
|
||||
copyToClipboard = (text: string) => navigator.clipboard.writeText(text);
|
||||
} else {
|
||||
copyToClipboard = async (text: string) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user