File tree 3 files changed +3
-5
lines changed
3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ module.exports = {
28
28
} ,
29
29
{
30
30
files : [
31
- '**/*.tsx'
31
+ '**/*.tsx' , '**/*.ts'
32
32
] ,
33
33
plugins : [
34
34
'@typescript-eslint' ,
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export function GHESReleaseNotePatch({
56
56
</ span >
57
57
) }
58
58
59
- { currentVersion . plan == 'enterprise-server' && (
59
+ { currentVersion . plan === 'enterprise-server' && (
60
60
< Link
61
61
href = { `https://enterprise.github.com/releases/${ patch . downloadVersion } /download` }
62
62
className = "ml-3 text-small text-bold"
Original file line number Diff line number Diff line change 1
1
import { GetServerSideProps } from 'next'
2
2
import { Liquid } from 'liquidjs'
3
-
4
- const liquid = new Liquid ( )
5
-
6
3
import {
7
4
MainContextT ,
8
5
MainContext ,
@@ -17,6 +14,7 @@ import {
17
14
GHESReleaseNotesContextT ,
18
15
} from 'components/release-notes/types'
19
16
17
+ const liquid = new Liquid ( )
20
18
type Props = {
21
19
mainContext : MainContextT
22
20
ghaeContext : GHAEReleaseNotesContextT
You can’t perform that action at this time.
0 commit comments