@@ -188,7 +188,7 @@ class AppsTable extends Component<
188
188
< LoadingOutlined
189
189
style = { {
190
190
fontSize : '12px' ,
191
- marginLeft : 12 ,
191
+ marginInlineStart : 12 ,
192
192
} }
193
193
/>
194
194
) : undefined }
@@ -399,7 +399,10 @@ class AppsTable extends Component<
399
399
< div style = { { maxWidth : 250 } } >
400
400
< CodeOutlined />
401
401
< span
402
- style = { { marginRight : 20 , marginLeft : 5 } }
402
+ style = { {
403
+ marginInlineEnd : 20 ,
404
+ marginInlineStart : 5 ,
405
+ } }
403
406
>
404
407
{ localize ( 'apps_table.title' , 'Your Apps' ) }
405
408
</ span >
@@ -492,7 +495,7 @@ class AppsTable extends Component<
492
495
} }
493
496
>
494
497
< Splitter . Panel
495
- style = { { marginRight : 10 } }
498
+ style = { { marginInlineEnd : 10 } }
496
499
defaultSize = { `${ Math . floor (
497
500
StorageHelper . getAppProjectSplitRatioFromLocalStorage ( ) *
498
501
100
@@ -502,7 +505,9 @@ class AppsTable extends Component<
502
505
>
503
506
{ self . createProjectTreeView ( ) }
504
507
</ Splitter . Panel >
505
- < Splitter . Panel style = { { marginLeft : 10 } } >
508
+ < Splitter . Panel
509
+ style = { { marginInlineStart : 10 } }
510
+ >
506
511
{ self . createAppTableHeader ( ) }
507
512
< Table < TableData >
508
513
rowKey = "appName"
@@ -561,7 +566,12 @@ class AppsTable extends Component<
561
566
if ( ! selectedProject || ! selectedProject . description ) return < div />
562
567
563
568
return (
564
- < DescriptionPanel headerText = "Notes" >
569
+ < DescriptionPanel
570
+ headerText = { localize (
571
+ 'projects.edit_project_description' ,
572
+ 'Description'
573
+ ) }
574
+ >
565
575
< div
566
576
style = { {
567
577
whiteSpace : 'pre-wrap' ,
@@ -626,8 +636,8 @@ class AppsTable extends Component<
626
636
< >
627
637
< span
628
638
style = { {
629
- marginLeft : 5 ,
630
- marginRight : 5 ,
639
+ marginInlineStart : 5 ,
640
+ marginInlineEnd : 5 ,
631
641
} }
632
642
>
633
643
{ name }
@@ -760,11 +770,13 @@ class AppsTable extends Component<
760
770
justify = { 'space-between' }
761
771
align = { 'middle' }
762
772
style = { {
763
- marginLeft : - 18 ,
773
+ marginInlineStart : - 18 ,
764
774
marginTop : - 10 ,
765
775
} }
766
776
>
767
- < h4 style = { { margin : 0 } } > Projects</ h4 >
777
+ < h4 style = { { margin : 0 } } >
778
+ { localize ( 'apps.delete_app_projects_list' , 'Projects' ) }
779
+ </ h4 >
768
780
< Tooltip
769
781
title = { localize (
770
782
'projects.new_project' ,
@@ -784,13 +796,13 @@ class AppsTable extends Component<
784
796
</ Row >
785
797
< hr
786
798
style = { {
787
- marginLeft : - 18 ,
799
+ marginInlineStart : - 18 ,
788
800
marginBottom : 20 ,
789
- marginRight : 0 ,
801
+ marginInlineEnd : 0 ,
790
802
} }
791
803
/>
792
804
< Tree . DirectoryTree
793
- style = { { marginLeft : - 22 , position : 'absolute' } }
805
+ style = { { marginInlineStart : - 22 , position : 'absolute' } }
794
806
showLine
795
807
checkStrictly = { true }
796
808
showIcon = { false }
0 commit comments