buli
2023-07-14 744f42c5496e656a1f9927740a3b37c0b97a6cba
force-app/main/default/lwc/paginator/paginator.html
@@ -6,8 +6,8 @@
                    <label class="slds-text-color_weak slds-p-horizontal_x-small" for="recordsPerPage">Page Size:</label>
                    <div class="slds-select_container">
                        <select class="slds-select" id="recordsPerPage" onchange={handleRecordsPerPage}>
                            <template for:each={pageSizeOptions} for:item="option">
                                <option key={option} value={option}>{option}</option>
                            <template for:each={pageOptionsList} for:item="option">
                                <option key={option.value} value={option.value} selected={option.select}>{option.value}</option>
                            </template>
                        </select>
                    </div>