Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Commit

Permalink
fix: object tiles should never grow fullwidth
Browse files Browse the repository at this point in the history
  • Loading branch information
vhf committed Oct 28, 2019
1 parent e4cc9e9 commit 0bbddc5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
3 changes: 1 addition & 2 deletions components/fallback/ClassProposals.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
:iri="proposal.proposalObject.iri"
:modified="proposal.updatedAt"
:is-proposal="true"
type="class"
class="" />
type="class" />
</div>
</div>
</div>
Expand Down
5 changes: 2 additions & 3 deletions components/fallback/Structure.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,14 @@
<div
v-for="child in group"
:key="child.path"
class="tile is-parent">
class="tile is-parent object-tile">
<pouch-box
:label="child.label"
:to="{ path: child.path, params: {} }"
:iri="child.iri"
:properties-count="_get(child, 'properties.length', 0)"
:modified="child.modified"
:type="child.type"
class="" />
:type="child.type" />
</div>
</div>
</div>
Expand Down
5 changes: 2 additions & 3 deletions components/home/StructureHome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,15 @@
<div
v-for="child in group"
:key="child.path"
class="tile is-parent">
class="tile is-parent object-tile">
<pouch-box
:label="child.label"
:to="{ path: child.path, params: {} }"
:iri="child.iri"
:properties-count="0"
:classes-count="childClassesCount(child)"
:modified="child.modified"
:type="child.type"
class="" />
:type="child.type" />
</div>
</div>
</div>
Expand Down

0 comments on commit 0bbddc5

Please sign in to comment.