Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
salazarm committed Oct 6, 2023
1 parent 0701a9d commit 3a0d571
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type CloudFeatureFlagContextType = {
enableAMPTimeline: boolean;
};
export const CloudFeatureFlagContext = React.createContext<CloudFeatureFlagContextType>({
enableAMPTimeline: true,
enableAMPTimeline: false,
});
export const useCloudFeatureFlag = () => {
return React.useContext(CloudFeatureFlagContext);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,9 @@ export const AutomaterializationEvaluationHistoryTable = ({
/>
</td>
<td>
{tick.requestedAssetMaterializationCount ? (
{[InstigationTickStatus.SKIPPED, InstigationTickStatus.SUCCESS].includes(
tick.status,
) ? (
<ButtonLink
onClick={() => {
setSelectedTick(tick);
Expand All @@ -168,7 +170,7 @@ export const AutomaterializationEvaluationHistoryTable = ({
</Body2>
</ButtonLink>
) : (
<Body2 color={Colors.Gray700}>No runs launched</Body2>
' - '
)}
</td>
<td>
Expand Down

0 comments on commit 3a0d571

Please sign in to comment.