|
|
@@ -70,7 +70,7 @@ const TemplateListGroupItem: React.FC<TemplateSummaryItemProps> = ({
|
|
|
>
|
|
|
<h4 className="mb-1 d-flex">
|
|
|
<span className="d-inline-block text-truncate">{localizedTemplate.title}</span>
|
|
|
- {localizedTemplate.pluginId != null ? <i className="icon-fw icon-puzzle ml-2 text-muted"></i> : ''}
|
|
|
+ {localizedTemplate.pluginId != null ? <i className="icon-fw icon-puzzle ml-2 text-muted small"></i> : ''}
|
|
|
</h4>
|
|
|
<p className="mb-2">{localizedTemplate.desc}</p>
|
|
|
{ templateLocales != null && Array.from(templateLocales).map(locale => (
|
|
|
@@ -99,7 +99,7 @@ const TemplateDropdownItem: React.FC<TemplateSummaryItemProps> = ({
|
|
|
>
|
|
|
<h4 className="mb-1 d-flex">
|
|
|
<span className="d-inline-block text-truncate">{localizedTemplate.title}</span>
|
|
|
- {localizedTemplate.pluginId != null ? <i className="icon-fw icon-puzzle ml-2 text-muted"></i> : ''}
|
|
|
+ {localizedTemplate.pluginId != null ? <i className="icon-fw icon-puzzle ml-2 text-muted small"></i> : ''}
|
|
|
</h4>
|
|
|
<p className="mb-1 text-wrap">{localizedTemplate.desc}</p>
|
|
|
{ templateLocales != null && Array.from(templateLocales).map(locale => (
|