Skip to content

Commit 3c5c91b

Browse files
committed
rebase
1 parent a28fb1a commit 3c5c91b

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.eslintrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = {
2828
},
2929
{
3030
files: [
31-
'**/*.tsx'
31+
'**/*.tsx', '**/*.ts'
3232
],
3333
plugins: [
3434
'@typescript-eslint',

components/release-notes/GHESReleaseNotePatch.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function GHESReleaseNotePatch({
5656
</span>
5757
)}
5858

59-
{currentVersion.plan == 'enterprise-server' && (
59+
{currentVersion.plan === 'enterprise-server' && (
6060
<Link
6161
href={`https://enterprise.github.com/releases/${patch.downloadVersion}/download`}
6262
className="ml-3 text-small text-bold"

pages/[versionId]/admin/release-notes.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import { GetServerSideProps } from 'next'
22
import { Liquid } from 'liquidjs'
3-
4-
const liquid = new Liquid()
5-
63
import {
74
MainContextT,
85
MainContext,
@@ -17,6 +14,7 @@ import {
1714
GHESReleaseNotesContextT,
1815
} from 'components/release-notes/types'
1916

17+
const liquid = new Liquid()
2018
type Props = {
2119
mainContext: MainContextT
2220
ghaeContext: GHAEReleaseNotesContextT

0 commit comments

Comments
 (0)