From a181fc113d024ed34d6b488c65882961bd1de3f4 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期二, 02 六月 2020 19:00:57 +0800 Subject: [PATCH] 2020-06-02 --- src/tabviews/zshare/cardcomponent/index.jsx | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/tabviews/zshare/cardcomponent/index.jsx b/src/tabviews/zshare/cardcomponent/index.jsx index 7877d82..d17f336 100644 --- a/src/tabviews/zshare/cardcomponent/index.jsx +++ b/src/tabviews/zshare/cardcomponent/index.jsx @@ -295,7 +295,7 @@ {card.details.map((detail, i) => { return ( <div className={detail.class} key={i}> - {this.getContent(detail.column)} + {detail.column ? this.getContent(detail.column) : detail.content} </div> ) })} @@ -538,6 +538,7 @@ </Tabs> : null } {!data || data.length === 0 ? <Empty description={false}/> : null} + <div className="clear"></div> </div> ) } -- Gitblit v1.8.0