Skip to content

Commit

Permalink
Tags: Fix incorrect embed title for some management commands
Browse files Browse the repository at this point in the history
  • Loading branch information
gdude2002 committed Jan 14, 2024
1 parent ed34c08 commit 0f4c845
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class TagsExtension : Extension() {

tags.forEach { tag ->
page {
title = "tag.title"
title = tag.title
description = tag.description
color = tag.color

Expand Down Expand Up @@ -173,7 +173,7 @@ class TagsExtension : Extension() {

tags.forEach { tag ->
page {
title = "tag.title"
title = tag.title
description = tag.description
color = tag.color

Expand Down

0 comments on commit 0f4c845

Please sign in to comment.