Skip to content

Commit a4c739c

Browse files
committed
Re-enable changes tab
1 parent 0022112 commit a4c739c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/UnisonShare/Page/ProjectContributionChangesPage.elm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,11 +790,12 @@ view appContext projectRef contribution model =
790790
[ TabList.tabList
791791
[ TabList.tab "Overview" (Link.projectContribution projectRef contribution.ref)
792792
]
793-
(TabList.tab "Changes" (Link.projectContributionChanges projectRef contribution.ref))
793+
(TabList.tab "Changes (beta preview)" (Link.projectContributionChanges projectRef contribution.ref))
794794
[]
795795
|> TabList.view
796796
, div [ class "project-contribution-changes-page" ]
797-
[ viewBranchDiff appContext
797+
[ StatusBanner.info "The contribution changes page is currently in a beta preview. Stay tuned for improvements and the upcoming full release."
798+
, viewBranchDiff appContext
798799
projectRef
799800
model.changedDefinitions
800801
diff

src/UnisonShare/Page/ProjectContributionOverviewPage.elm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -479,8 +479,7 @@ viewPageContent appContext projectRef updateStatus contribution mergeStatus time
479479
TabList.tabList
480480
[]
481481
(TabList.tab "Overview" (Link.projectContribution projectRef contribution.ref))
482-
[]
483-
-- TabList.tab "Changes" (Link.projectContributionChanges projectRef contribution.ref) ]
482+
[ TabList.tab "Changes (beta preview)" (Link.projectContributionChanges projectRef contribution.ref) ]
484483
|> TabList.view
485484

486485
else

0 commit comments

Comments
 (0)