Skip to content
Snippets Groups Projects
Commit d0b9abbe authored by Jean-Baptiste Pasquier's avatar Jean-Baptiste Pasquier
Browse files
parent 632b641f
No related branches found
No related tags found
No related merge requests found
Pipeline #17595 passed with stage
in 50 seconds
......@@ -652,6 +652,7 @@ utils.importCore().then(async (core) => {
nested-field="ofn:hasAssurancePartnerships"
fields="ofn:Assurance_partner"
widget-ofn:Assurance_partner="custom-assurance-partner"
class="row margin-top-10"
></solid-display>
</div>
</div>
......
......@@ -59,15 +59,15 @@ importCore().then(core => {
this.rendering = html``;
for(let partner of resource) {
this._addToRender(html`
<div class="col s12 m6">
<img src="${partner["ofn:Logo_URL"]}" alt="${partner["ofn:Group_name"]}" />
<div class="col s6">
<img class="responsive-img" src="${partner["ofn:Logo_URL"]}" alt="${partner["ofn:Group_name"]}" />
<br />
<span class="text-14 text-green bold underline">${partner["ofn:Group_name"]}</span>
</div>
`);
}
return html`
<div class="row margin-top-10">
<div>
${this.rendering}
</div>
`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment