rjaros / kvision

Object oriented web framework for Kotlin/JS
https://kvision.io
MIT License
1.2k stars 67 forks source link

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

Closed PedroCavaleiro closed 1 year ago

PedroCavaleiro commented 1 year ago

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

PedroCavaleiro commented 1 year ago

After discussing with @rjaros

It was suggested to use the following workaround

langs = obj {
    default = obj {
        pagination = obj {
            first = "<<"
            last = ">>"
            prev = "<"
            next = ">"
        }
    }
}
rjaros commented 1 year ago

Fixed in 6.5.2