File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -77,8 +77,9 @@ const metadata = {
77
77
* @type {boolean }
78
78
* @defaultvalue false
79
79
* @public
80
+ * @since 1.0.0-rc.15
80
81
*/
81
- noArrows : {
82
+ hideArrows : {
82
83
type : Boolean ,
83
84
} ,
84
85
@@ -592,11 +593,11 @@ class FlexibleColumnLayout extends UI5Element {
592
593
}
593
594
594
595
get showStartArrow ( ) {
595
- return this . noArrows ? false : this . startArrowVisibility ;
596
+ return this . hideArrows ? false : this . startArrowVisibility ;
596
597
}
597
598
598
599
get showEndArrow ( ) {
599
- return this . noArrows ? false : this . endArrowVisibility ;
600
+ return this . hideArrows ? false : this . endArrowVisibility ;
600
601
}
601
602
602
603
get startArrowVisibility ( ) {
Original file line number Diff line number Diff line change 227
227
228
228
<!-- ex2 -->
229
229
< br > < br >
230
- < ui5-title class ="sectionTitle "> Master-Detail: Detail expanded + no -arrows</ ui5-title >
230
+ < ui5-title class ="sectionTitle "> Master-Detail: Detail expanded + hide -arrows</ ui5-title >
231
231
< ui5-toggle-button id ="switchBtn2 " class ="testButton "> Set to TwoColumnsMidExpanded</ ui5-toggle-button >
232
232
< br > < br >
233
233
234
- < ui5-flexible-column-layout id ="fcl2 " layout ="TwoColumnsMidExpanded " no -arrows>
234
+ < ui5-flexible-column-layout id ="fcl2 " layout ="TwoColumnsMidExpanded " hide -arrows>
235
235
<!-- start column -->
236
236
< div style ="box-sizing: border-box; " slot ="startColumn ">
237
237
< div style ="padding: 1rem ">
You can’t perform that action at this time.
0 commit comments