Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

7.4.2

Compare
Choose a tag to compare
@kulmann kulmann released this 21 Jun 07:06
· 1709 commits to master since this release

Changelog for [7.4.2] (2021-06-21)

Summary

  • Bugfix - 0.5px separator line between OcSidebarNav items: #1402
  • Bugfix - OcIcon crashes if icon gets updated: #1407
  • Bugfix - Pagination renders unnecessary ... skip label: #1406

Details

  • Bugfix - 0.5px separator line between OcSidebarNav items: #1402

    The small line between OcSidebarNav items was displayed with different widths depending on
    the used browser, since some can't handle half-pixel values. We've changed that to create the
    same look across browsers.

    #1402

  • Bugfix - OcIcon crashes if icon gets updated: #1407

    Before this bugfix, updating oc-icon name prop crashed vue-inline-svg. We had to
    overwrite vue-inline-svg download method and forgot to implement its isPending
    property on the returned promise.

    This is fixed now and tested

    #1407

  • Bugfix - Pagination renders unnecessary ... skip label: #1406

    In cases where the pagination should only render 4 pages at once and 4 are available, it rendered
    a skip label < 1 2 ... 4 > even if it's not required.

    Now this is fixed and it renders < 1 2 3 4 > instead.

    #1406