HTML syntax fixes
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
8452b2e096
commit
bc6c0e0448
@ -3,9 +3,8 @@
|
|||||||
<div class="">
|
<div class="">
|
||||||
<o-field
|
<o-field
|
||||||
:label-for="id"
|
:label-for="id"
|
||||||
expanded
|
|
||||||
:message="fieldErrors"
|
:message="fieldErrors"
|
||||||
:type="{ 'is-danger': fieldErrors }"
|
:variant="{ danger: fieldErrors }"
|
||||||
class="!-mt-2"
|
class="!-mt-2"
|
||||||
:labelClass="labelClass"
|
:labelClass="labelClass"
|
||||||
>
|
>
|
||||||
@ -32,7 +31,6 @@
|
|||||||
v-model="queryText"
|
v-model="queryText"
|
||||||
:placeholder="placeholderWithDefault"
|
:placeholder="placeholderWithDefault"
|
||||||
:customFormatter="(elem: IAddress) => addressFullName(elem)"
|
:customFormatter="(elem: IAddress) => addressFullName(elem)"
|
||||||
:loading="isFetching"
|
|
||||||
:debounceTyping="debounceDelay"
|
:debounceTyping="debounceDelay"
|
||||||
@typing="asyncData"
|
@typing="asyncData"
|
||||||
:icon="canShowLocateMeButton ? null : 'map-marker'"
|
:icon="canShowLocateMeButton ? null : 'map-marker'"
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
@click="scrollLeft"
|
@click="scrollLeft"
|
||||||
class="absolute inset-y-0 my-auto z-10 rounded-full bg-white dark:bg-transparent w-10 h-10 border border-shadowColor -left-5"
|
class="absolute inset-y-0 my-auto z-10 rounded-full bg-white dark:bg-transparent w-10 h-10 border border-shadowColor -left-5"
|
||||||
>
|
>
|
||||||
<div class=""><</div>
|
<span class=""><</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="overflow-hidden">
|
<div class="overflow-hidden">
|
||||||
@ -41,7 +41,7 @@
|
|||||||
@click="scrollRight"
|
@click="scrollRight"
|
||||||
class="absolute inset-y-0 my-auto z-10 rounded-full bg-white dark:bg-transparent w-10 h-10 border border-shadowColor -right-5"
|
class="absolute inset-y-0 my-auto z-10 rounded-full bg-white dark:bg-transparent w-10 h-10 border border-shadowColor -right-5"
|
||||||
>
|
>
|
||||||
<div class="">></div>
|
<span class="">></span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -29,9 +29,7 @@
|
|||||||
v-for="group in selectedGroups"
|
v-for="group in selectedGroups"
|
||||||
:key="group.id"
|
:key="group.id"
|
||||||
:group="group"
|
:group="group"
|
||||||
:view-mode="'column'"
|
:mode="'column'"
|
||||||
:minimal="true"
|
|
||||||
:has-border="true"
|
|
||||||
:showSummary="false"
|
:showSummary="false"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
@ -19,9 +19,7 @@
|
|||||||
v-for="event in events?.elements"
|
v-for="event in events?.elements"
|
||||||
:key="event.id"
|
:key="event.id"
|
||||||
:event="event"
|
:event="event"
|
||||||
view-mode="column"
|
mode="column"
|
||||||
:has-border="true"
|
|
||||||
:minimal="true"
|
|
||||||
/>
|
/>
|
||||||
<more-content
|
<more-content
|
||||||
:to="{
|
:to="{
|
||||||
|
@ -11,8 +11,7 @@
|
|||||||
<event-card
|
<event-card
|
||||||
v-if="instanceOfIEvent(activeElement)"
|
v-if="instanceOfIEvent(activeElement)"
|
||||||
:event="(activeElement as IEvent)"
|
:event="(activeElement as IEvent)"
|
||||||
:has-border="false"
|
mode="column"
|
||||||
view-mode="column"
|
|
||||||
:options="{
|
:options="{
|
||||||
isRemoteEvent: activeElement.__typename === 'EventResult',
|
isRemoteEvent: activeElement.__typename === 'EventResult',
|
||||||
isLoggedIn,
|
isLoggedIn,
|
||||||
@ -21,8 +20,7 @@
|
|||||||
<group-card
|
<group-card
|
||||||
v-else
|
v-else
|
||||||
:group="(activeElement as IGroup)"
|
:group="(activeElement as IGroup)"
|
||||||
:has-border="false"
|
mode="column"
|
||||||
view-mode="column"
|
|
||||||
:isRemoteGroup="activeElement.__typename === 'GroupResult'"
|
:isRemoteGroup="activeElement.__typename === 'GroupResult'"
|
||||||
:isLoggedIn="isLoggedIn"
|
:isLoggedIn="isLoggedIn"
|
||||||
/>
|
/>
|
||||||
@ -34,8 +32,7 @@
|
|||||||
<event-card
|
<event-card
|
||||||
v-if="instanceOfIEvent(activeElement)"
|
v-if="instanceOfIEvent(activeElement)"
|
||||||
:event="(activeElement as IEvent)"
|
:event="(activeElement as IEvent)"
|
||||||
view-mode="column"
|
mode="column"
|
||||||
:has-border="false"
|
|
||||||
:options="{
|
:options="{
|
||||||
isRemoteEvent: activeElement.__typename === 'EventResult',
|
isRemoteEvent: activeElement.__typename === 'EventResult',
|
||||||
isLoggedIn,
|
isLoggedIn,
|
||||||
@ -44,8 +41,7 @@
|
|||||||
<group-card
|
<group-card
|
||||||
v-else
|
v-else
|
||||||
:group="(activeElement as IGroup)"
|
:group="(activeElement as IGroup)"
|
||||||
:has-border="false"
|
mode="column"
|
||||||
view-mode="column"
|
|
||||||
:isRemoteGroup="activeElement.__typename === 'GroupResult'"
|
:isRemoteGroup="activeElement.__typename === 'GroupResult'"
|
||||||
:isLoggedIn="isLoggedIn"
|
:isLoggedIn="isLoggedIn"
|
||||||
/>
|
/>
|
||||||
|
Loading…
Reference in New Issue
Block a user