@@ -639,6 +639,7 @@ define([
639
639
FrameEditor . prototype . renderRenamePage = function ( ) {
640
640
var content = new sb . StringBuilder ( ) ;
641
641
content . appendLine ( '<table>' ) ;
642
+ content . appendLine ( '<colgroup><col width="100px"><col width="*"></colgroup>' ) ;
642
643
this . state . selected . forEach ( ( col , idx ) => {
643
644
content . appendLine ( '<tr>' ) ;
644
645
content . appendFormatLine ( '<th><label>{0}</label></th>' , col . label ) ;
@@ -680,6 +681,7 @@ define([
680
681
FrameEditor . prototype . renderAsType = function ( ) {
681
682
var astypeList = this . astypeList ;
682
683
var content = new sb . StringBuilder ( ) ;
684
+ content . appendFormatLine ( '<div class="{0}">' , 'vp-popup-astype' ) ;
683
685
content . appendFormatLine ( '<table class="{0}">' , 'vp-popup-astype-table' ) ;
684
686
content . appendLine ( '<colgroup><col width="140px"><col width="80px"><col width="*"></colgroup>' ) ;
685
687
content . appendFormatLine ( '<thead style="height: 30px"><th>{0}</th><th>{1}</th><th class="{2}">{3}</th></thead>'
@@ -698,6 +700,7 @@ define([
698
700
content . appendLine ( '</tr>' ) ;
699
701
} ) ;
700
702
content . appendLine ( '</tbody></table>' ) ;
703
+ content . append ( '</div>' ) ;
701
704
return content . toString ( ) ;
702
705
}
703
706
0 commit comments