JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr class="bugrow wait_dev">
        <td>blah1</td>
    </tr>
    <tr class="bugrow wait_support">
        <td>blah2</td>
    </tr>
    <tr class="bugrow wait_branch">
        <td>blah3</td>
    </tr>
</table>
<input id="wait_dev" type="checkbox" autocomplete="off" class="check">Wait dev
<input id="wait_support" type="checkbox" autocomplete="off" class="check">Wait support
<input id="wait_branch" type="checkbox" autocomplete="off" class="check">Wait branch

JavaScript

$('input').change(function () {

    $('tr').show();

    $('input:checkbox.check').each(function () {
        if (!this.checked) {
            $('.' + $(this).attr('id')).hide();
        }
    });
});