I am using the links template and would like to open the links in a new tab (target=_blank). Is there an easy way to do this?
template: {
type: "links",
fields: {
link: "url"
}
}, ...
Ended up modifying the source template.js and `if(template.type === "links") {
and added target='_blank' (crude but works for this purpose). Wish CSS was able to address target behavior sort of how it does for hover.