Skip to content

Commit

Permalink
Changing list.vue from json to using slots
Browse files Browse the repository at this point in the history
  • Loading branch information
dedanirungu committed Feb 24, 2023
1 parent 1844b6d commit fb132fc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mybizna/mail",
"description": "",
"type": "asgard-module",
"version": "1.2.99",
"version": "1.3.0",
"license": "GPL-3.0-or-later",
"authors": [
{
Expand Down
4 changes: 3 additions & 1 deletion views/admin/contact/list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
<td>{{ item.name }}</td>
<td>{{ item.email }}</td>
<td>{{ item.ordering }}</td>
<td>{{ item.published }}</td>
<td class="text-center">
<btn-status :status="item.published"></btn-status>
</td>
</template>


Expand Down
4 changes: 3 additions & 1 deletion views/admin/signature/list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
<td>{{ item.title }}</td>
<td>{{ item.signature }}</td>
<td>{{ item.ordering }}</td>
<td>{{ item.published }}</td>
<td class="text-center">
<btn-status :status="item.published"></btn-status>
</td>
</template>

</table-render>
Expand Down

0 comments on commit fb132fc

Please sign in to comment.