rjaros / kvision

Object oriented web framework for Kotlin/JS

Home Page:https://kvision.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tabulator Pagination icons still don't work on 6.5.1 on Safari

PedroCavaleiro opened this issue · comments

After updating KVision to 6.5.1 I noticed that the tabulator pagination icons are still not working as it was expected on Safari the caches were cleared before opening the issue

Browser: Safari 16.5
OS: macOS Ventura 13.4
KVision: 6.5.1
Kotlin: 1.8.22

image

After discussing with @rjaros

It was suggested to use the following workaround

langs = obj {
    default = obj {
        pagination = obj {
            first = "<<"
            last = ">>"
            prev = "<"
            next = ">"
        }
    }
}

Fixed in 6.5.2