Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HUB Terra
SMS
Frontend
Commits
5b0d8376
Commit
5b0d8376
authored
2 years ago
by
Tim Eder
Browse files
Options
Downloads
Patches
Plain Diff
List view info
parent
cde2168a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!296
Merge develop for staging release
,
!235
List view info
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
components/devices/DevicesListItem.vue
+34
-1
34 additions, 1 deletion
components/devices/DevicesListItem.vue
components/platforms/PlatformsListItem.vue
+34
-1
34 additions, 1 deletion
components/platforms/PlatformsListItem.vue
pages/configurations/index.vue
+1
-1
1 addition, 1 deletion
pages/configurations/index.vue
with
69 additions
and
3 deletions
components/devices/DevicesListItem.vue
+
34
−
1
View file @
5b0d8376
...
...
@@ -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"
...
...
This diff is collapsed.
Click to expand it.
components/platforms/PlatformsListItem.vue
+
34
−
1
View file @
5b0d8376
...
...
@@ -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"
...
...
This diff is collapsed.
Click to expand it.
pages/configurations/index.vue
+
1
−
1
View file @
5b0d8376
...
...
@@ -127,7 +127,7 @@ permissions and limitations under the Licence.
/>
<div
v-if=
"configurations.length
<
=0
&&
!
loading
"
>
<p
class=
"text-center"
>
There are no
platform
s that match your search criteria.
There are no
configuration
s that match your search criteria.
</p>
</div>
<div
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment