mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-30 16:13:58 +00:00
ts fix
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
export function plusExpandIcon(isExpanded) {
|
export function plusExpandIcon(isExpanded): string {
|
||||||
return isExpanded ? 'icon minus-box' : 'icon plus-box';
|
return isExpanded ? 'icon minus-box' : 'icon plus-box';
|
||||||
}
|
}
|
||||||
|
|
||||||
export function chevronExpandIcon(isExpanded) {
|
export function chevronExpandIcon(isExpanded): string {
|
||||||
return isExpanded ? 'icon chevron-down' : 'icon chevron-right';
|
return isExpanded ? 'icon chevron-down' : 'icon chevron-right';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user