Skip to content

Commit

Permalink
improvement(docs): Don't inherit @system notices from ancestry
Browse files Browse the repository at this point in the history
  • Loading branch information
Josmithr committed Dec 12, 2024
1 parent f8b8e01 commit 3bcd5de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export async function renderApiDocumentation(inputDir, outputDir, uriRootDir, ap
createDefaultLayout: layoutContent,
getAlertsForItem: (apiItem) => {
const alerts = [];
if (ApiItemUtilities.ancestryHasModifierTag(apiItem, "@system")) {
if (ApiItemUtilities.hasModifierTag(apiItem, "@system")) {
alerts.push("System");
} else {
if (ApiItemUtilities.isDeprecated(apiItem)) {
Expand Down

0 comments on commit 3bcd5de

Please sign in to comment.