-
Notifications
You must be signed in to change notification settings - Fork 454
Open
Labels
bughtml: frontendAn issue/PR that only or primarily requires frontend work (html/css)An issue/PR that only or primarily requires frontend work (html/css)
Description
In 2.1.0 pages with overloads lost double divider, and now it becomes hard to distinguish each declaration
/**
* Method for overloading without parameters
* @return [Unit] returns nothing but
*/
fun method(){}
/**
* Method for overloading with 1 parameter
* @param p the only [Int] parameter
* @return [Unit] returns nothing but
*/
fun method(p: Int){}
/**
* Method for overloading with 1 parameter
* @param p the only [Int] parameter
* @param p1 the second [Int] parameter
* @return [Unit] returns nothing but
*/
fun method(p: Int, p1: Int){}
/**
* Method for overloading with 2 parameter
* @param p the only [Int] parameter
* @param p1 the second [Int] parameter
* @param p2 the third [Int] parameter
* @return [Unit] returns nothing but
*/
fun method(p: Int, p1: Int, p2: Int){}

Metadata
Metadata
Assignees
Labels
bughtml: frontendAn issue/PR that only or primarily requires frontend work (html/css)An issue/PR that only or primarily requires frontend work (html/css)