FIX: makes tags reactive with docked header (#29894)

No test as it's complicated to have a very simple test for this and I don't want to write a system spec for such a very specific thing.
This commit is contained in:
Joffrey JAFFEUX 2024-11-22 18:00:11 +01:00 committed by GitHub
parent 667a09b159
commit f24d2b926f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,7 +48,7 @@ export default class Info extends Component {
}
get tags() {
if (this.args.topicInfo.tags) {
if (this.args.topicInfo.get("tags")) {
return renderTags(this.args.topicInfo);
}
}