File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages/main/src/components/AnalyticalTable/ColumnHeader Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -139,17 +139,17 @@ export const ColumnHeaderModal = (props: ColumnHeaderModalProperties) => {
139139 const horizontalAlign = ( ( ) => {
140140 switch ( column . hAlign ) {
141141 case TextAlign . Begin :
142- return isRtl ? PopoverHorizontalAlign . Right : PopoverHorizontalAlign . Left ;
142+ return PopoverHorizontalAlign . Left ;
143143 case TextAlign . End :
144- return isRtl ? PopoverHorizontalAlign . Left : PopoverHorizontalAlign . Right ;
144+ return PopoverHorizontalAlign . Right ;
145145 case TextAlign . Left :
146- return PopoverHorizontalAlign . Left ;
146+ return isRtl ? PopoverHorizontalAlign . Right : PopoverHorizontalAlign . Left ;
147147 case TextAlign . Right :
148- return PopoverHorizontalAlign . Right ;
148+ return isRtl ? PopoverHorizontalAlign . Left : PopoverHorizontalAlign . Right ;
149149 case TextAlign . Center :
150150 return PopoverHorizontalAlign . Center ;
151151 default :
152- return isRtl ? PopoverHorizontalAlign . Right : PopoverHorizontalAlign . Left ;
152+ return PopoverHorizontalAlign . Left ;
153153 }
154154 } ) ( ) ;
155155
You can’t perform that action at this time.
0 commit comments