Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 57e7d24

Browse files
committed
fix(packages/core): sidecar header shouldn't display createdOn in old subtext position
Fixes #3383
1 parent 26f18f8 commit 57e7d24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/webapp/views/sidecar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ export const addNameToSidecarHeader = async (
298298

299299
// if we weren't given a "subtext", and we find legitimate "created
300300
// on" metadata, then show that as the subtext
301-
if (!subtext && metadataBearer) {
301+
if (!subtext && !entity.toolbarText && metadataBearer) {
302302
const maybe = createdOn(metadataBearer, isCustomSpec(entity) && entity)
303303
if (maybe) {
304304
subtext = maybe

0 commit comments

Comments
 (0)