mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
class made dynamic with correct hLevel option
This commit is contained in:
parent
bb471fd4af
commit
b4234ddc58
@ -7,7 +7,7 @@
|
|||||||
addLink: false,
|
addLink: false,
|
||||||
addAltNames: true,
|
addAltNames: true,
|
||||||
addAge : false,
|
addAge : false,
|
||||||
hLevel : 1
|
hLevel : 3
|
||||||
}"
|
}"
|
||||||
:person="participation.person">
|
:person="participation.person">
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<person-render-box
|
<person-render-box
|
||||||
v-if="resource.resource.type === 'person'"
|
v-if="resource.resource.type === 'person'"
|
||||||
:person="resource.resource"
|
:person="resource.resource"
|
||||||
:options="{ addInfo : true, addId : false, addEntity: true, addLink: false, addAltNames: true, addAge : false, hLevel : 1 }"
|
:options="{ addInfo : true, addId : false, addEntity: true, addLink: false, addAltNames: true, addAge : false, hLevel : 3 }"
|
||||||
>
|
>
|
||||||
<template v-slot:record-actions>
|
<template v-slot:record-actions>
|
||||||
<ul class="record_actions">
|
<ul class="record_actions">
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<div class="item-col">
|
<div class="item-col">
|
||||||
<div class="entity-label">
|
<div class="entity-label">
|
||||||
|
|
||||||
<div class="denomination h3">
|
<div :class="'denomination h' + options.hLevel">
|
||||||
|
|
||||||
<a v-if="this.options.addLink == true" href="#">
|
<a v-if="this.options.addLink == true" href="#">
|
||||||
<span class="firstname">{{ person.firstName }}</span>
|
<span class="firstname">{{ person.firstName }}</span>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<div class="item-col">
|
<div class="item-col">
|
||||||
<div class="entity-label">
|
<div class="entity-label">
|
||||||
|
|
||||||
<div class="denomination h3">
|
<div :class="'denomination h' + options.hLevel">
|
||||||
|
|
||||||
<a v-if="this.options.addLink == true" href="#">
|
<a v-if="this.options.addLink == true" href="#">
|
||||||
<span class="name">{{ thirdparty.text }}</span>
|
<span class="name">{{ thirdparty.text }}</span>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user