|
@@ -68,7 +68,6 @@ const TemplateListGroupItem: React.FC<TemplateSummaryItemProps> = ({
|
|
|
onClick={onClick}
|
|
onClick={onClick}
|
|
|
aria-current="true"
|
|
aria-current="true"
|
|
|
>
|
|
>
|
|
|
- {/* TODO: #123475 [Plugin] プラグイン由来のテンプレートであることがわかるように badge を付ける */}
|
|
|
|
|
<h4 className="mb-1">{localizedTemplate.title}
|
|
<h4 className="mb-1">{localizedTemplate.title}
|
|
|
{localizedTemplate.pluginId != null ? <i className="fa fa-puzzle-piece ml-2 text-muted" data-bs-toggle="tooltip" title="Plugin"></i> : ''}
|
|
{localizedTemplate.pluginId != null ? <i className="fa fa-puzzle-piece ml-2 text-muted" data-bs-toggle="tooltip" title="Plugin"></i> : ''}
|
|
|
</h4>
|
|
</h4>
|
|
@@ -97,7 +96,6 @@ const TemplateDropdownItem: React.FC<TemplateSummaryItemProps> = ({
|
|
|
onClick={onClick}
|
|
onClick={onClick}
|
|
|
className="px-4 py-3"
|
|
className="px-4 py-3"
|
|
|
>
|
|
>
|
|
|
- {/* TODO: #123475 [Plugin] プラグイン由来のテンプレートであることがわかるように badge を付ける */}
|
|
|
|
|
<h4 className="mb-1 text-wrap">{localizedTemplate.title}
|
|
<h4 className="mb-1 text-wrap">{localizedTemplate.title}
|
|
|
{localizedTemplate.pluginId != null ? <i className="fa fa-puzzle-piece ml-2 text-muted" data-bs-toggle="tooltip" title="Plugin"></i> : ''}
|
|
{localizedTemplate.pluginId != null ? <i className="fa fa-puzzle-piece ml-2 text-muted" data-bs-toggle="tooltip" title="Plugin"></i> : ''}
|
|
|
</h4>
|
|
</h4>
|
|
@@ -194,7 +192,6 @@ const TemplateModalSubstance = (props: TemplateModalSubstanceProps): JSX.Element
|
|
|
{ templateSummaries != null && templateSummaries.map((templateSummary) => {
|
|
{ templateSummaries != null && templateSummaries.map((templateSummary) => {
|
|
|
const templateId = constructTemplateId(templateSummary);
|
|
const templateId = constructTemplateId(templateSummary);
|
|
|
const isSelected = selectedTemplateSummary != null && constructTemplateId(selectedTemplateSummary) === templateId;
|
|
const isSelected = selectedTemplateSummary != null && constructTemplateId(selectedTemplateSummary) === templateId;
|
|
|
- console.log(templateSummary);
|
|
|
|
|
|
|
|
|
|
return (
|
|
return (
|
|
|
<TemplateListGroupItem
|
|
<TemplateListGroupItem
|