Bootstrap-Table Bootstrap4 Issue

by jimkennelly

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.11.1/bootstrap-table.css">

<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.11.1/bootstrap-table.js"></script>

<div class="card">
    <div class="card-header"><h4><i class="fa fa-list fa-fw"></i>User List</h4></div>
    <div class="card-body">
        <div class="row">
            <div class="col">
                <table data-toggle="table"
                    data-height="0"
                    data-pagination="true"
                  
                    data-search="true"
                    data-striped="true">
                    <thead>
                        <tr>
                            <th data-width="1%" class="text-nowrap">Actions</th>
                            <th data-sortable="true">Email</th>
                            <th data-sortable="true">Verified</th>
                            <th data-sortable="true">Disabled</th>
                        </tr>
                    </thead>
                    <tbody>
                            <tr>
                                <td>TEST1</td>
                                <td>TEST2</td>
                                <td>TEST3</td>
                                <td>TEST4</td>
                            </tr>
                            <tr>
                                <td>TEST1</td>
                                <td>TEST2</td>
                                <td>TEST3</td>
                                <td>TEST4</td>
                            </tr>
                            <tr>
                                <td>TEST1</td>
   ...