diff options
author | 2020-01-08 15:44:00 +0700 | |
---|---|---|
committer | 2020-01-08 15:44:00 +0700 | |
commit | 4c502f50b45d339f9eb6fb3964b4eabc7ba7a36f (patch) | |
tree | 8e00412e5418075291621a31347a226ea6fa238b /source/features/embed-gist-inline.tsx | |
parent | 1d180ef1005d91199419fd9fdc771fee62a235b5 (diff) | |
download | refined-github-4c502f50b45d339f9eb6fb3964b4eabc7ba7a36f.tar.gz refined-github-4c502f50b45d339f9eb6fb3964b4eabc7ba7a36f.tar.zst refined-github-4c502f50b45d339f9eb6fb3964b4eabc7ba7a36f.zip |
Meta: Enable JSX linting (#2678)
Diffstat (limited to 'source/features/embed-gist-inline.tsx')
-rw-r--r-- | source/features/embed-gist-inline.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/features/embed-gist-inline.tsx b/source/features/embed-gist-inline.tsx index 931242a8..c7cc2196 100644 --- a/source/features/embed-gist-inline.tsx +++ b/source/features/embed-gist-inline.tsx @@ -33,8 +33,9 @@ async function embedGist(link: HTMLAnchorElement): Promise<void> { max-height: 16em; overflow-y: auto; } - `}</style>, - <link rel="stylesheet" href={gistData.stylesheet} />, + `} + </style>, + <link rel="stylesheet" href={gistData.stylesheet}/>, files ); } |