Remove data-href from pages.html to fix delete button (#1021)

* Remove `data-href` from `pages.html` to fix the delete button
    * The delete action propagates too much causing issues. This should be re-implemented on page editor rewrite.
This commit is contained in:
Kevin Chung
2019-06-08 19:57:30 -04:00
committed by GitHub
parent 8d91a3fa8d
commit 6f616878b6

View File

@@ -32,7 +32,7 @@
</thead>
<tbody>
{% for page in pages %}
<tr data-href="{{ url_for('admin.pages_detail', page_id=page.id) }}">
<tr>
<td class="page-title">
{{ page.title }}
</td>