Skip to content
Snippets Groups Projects
Commit 5b0d8376 authored by Tim Eder's avatar Tim Eder
Browse files

List view info

parent cde2168a
No related branches found
No related tags found
2 merge requests!296Merge develop for staging release,!235List view info
......@@ -67,7 +67,40 @@ permissions and limitations under the Licence.
no-gutters
>
<v-col class="text-subtitle-1">
{{ device.shortName }}
<span>{{ device.shortName }}</span>
<v-tooltip v-if="$vuetify.breakpoint.smAndUp" bottom>
<template #activator="{ on, attrs }">
<span
v-if="device.manufacturerName !== ''"
v-bind="attrs"
class="text--disabled"
v-on="on"
>- {{ device.manufacturerName }}</span>
</template>
<span>Manufacturer</span>
</v-tooltip>
<v-tooltip v-if="$vuetify.breakpoint.smAndUp" bottom>
<template #activator="{ on, attrs }">
<span
v-if="device.model !== ''"
v-bind="attrs"
class="text--disabled"
v-on="on"
>- {{ device.model }}</span>
</template>
<span>Model number</span>
</v-tooltip>
<v-tooltip bottom>
<template #activator="{ on, attrs }">
<span
v-if="device.serialNumber !== ''"
v-bind="attrs"
class="text--disabled"
v-on="on"
>- {{ device.serialNumber }}</span>
</template>
<span>Serial number</span>
</v-tooltip>
</v-col>
<v-col
align-self="end"
......
......@@ -67,7 +67,40 @@ permissions and limitations under the Licence.
no-gutters
>
<v-col class="text-subtitle-1">
{{ platform.shortName }}
<span> {{ platform.shortName }}</span>
<v-tooltip v-if="$vuetify.breakpoint.smAndUp" bottom>
<template #activator="{ on, attrs }">
<span
v-if="platform.manufacturerName !== ''"
v-bind="attrs"
class="text--disabled"
v-on="on"
>- {{ platform.manufacturerName }}</span>
</template>
<span>Manufacturer</span>
</v-tooltip>
<v-tooltip v-if="$vuetify.breakpoint.smAndUp" bottom>
<template #activator="{ on, attrs }">
<span
v-if="platform.model !== ''"
v-bind="attrs"
class="text--disabled"
v-on="on"
>- {{ platform.model }}</span>
</template>
<span>Model number</span>
</v-tooltip>
<v-tooltip bottom>
<template #activator="{ on, attrs }">
<span
v-if="platform.serialNumber !== ''"
v-bind="attrs"
class="text--disabled"
v-on="on"
>- {{ platform.serialNumber }}</span>
</template>
<span>Serial number</span>
</v-tooltip>
</v-col>
<v-col
align-self="end"
......
......@@ -127,7 +127,7 @@ permissions and limitations under the Licence.
/>
<div v-if="configurations.length <=0 && !loading">
<p class="text-center">
There are no platforms that match your search criteria.
There are no configurations that match your search criteria.
</p>
</div>
<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