From 549d932d7b54946a2dc622ce12ff3415acd23880 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Thu, 23 Jun 2022 16:45:56 +1000 Subject: Fix root-displayed-in-italics bug --- src/components/Tile.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/components/Tile.vue b/src/components/Tile.vue index 3407b3f..df48e25 100644 --- a/src/components/Tile.vue +++ b/src/components/Tile.vue @@ -193,7 +193,7 @@ export default defineComponent({ padding: this.uiOpts.leafTilePadding + 'px', lineHeight: this.uiOpts.leafHeaderFontSz + 'px', fontSize: this.uiOpts.leafHeaderFontSz + 'px', - fontStyle: this.tolNode.pSupport ? 'normal' : 'italic', + fontStyle: (this.tolNode.pSupport || this.tolNode.parent == null) ? 'normal' : 'italic', color: headerColor, // For ellipsis overflow: 'hidden', @@ -228,7 +228,7 @@ export default defineComponent({ borderTopLeftRadius: 'inherit', borderTopRightRadius: 'inherit', backgroundColor: this.uiOpts.nonleafHeaderBgColor, - fontStyle: this.tolNode.pSupport ? 'normal' : 'italic', + fontStyle: (this.tolNode.pSupport || this.tolNode.parent == null) ? 'normal' : 'italic', }; if (this.isOverflownRoot){ styles = { -- cgit v1.2.3