@@ -639,6 +639,7 @@ define([
639639FrameEditor . prototype . renderRenamePage = function ( ) {
640640var content = new sb . StringBuilder ( ) ;
641641content . appendLine ( '<table>' ) ;
642+ content . appendLine ( '<colgroup><col width="100px"><col width="*"></colgroup>' ) ;
642643this . state . selected . forEach ( ( col , idx ) => {
643644content . appendLine ( '<tr>' ) ;
644645content . appendFormatLine ( '<th><label>{0}</label></th>' , col . label ) ;
@@ -680,6 +681,7 @@ define([
680681FrameEditor . prototype . renderAsType = function ( ) {
681682var astypeList = this . astypeList ;
682683var content = new sb . StringBuilder ( ) ;
684+ content . appendFormatLine ( '<div class="{0}">' , 'vp-popup-astype' ) ;
683685content . appendFormatLine ( '<table class="{0}">' , 'vp-popup-astype-table' ) ;
684686content . appendLine ( '<colgroup><col width="140px"><col width="80px"><col width="*"></colgroup>' ) ;
685687content . appendFormatLine ( '<thead style="height: 30px"><th>{0}</th><th>{1}</th><th class="{2}">{3}</th></thead>'
@@ -698,6 +700,7 @@ define([
698700content . appendLine ( '</tr>' ) ;
699701} ) ;
700702content . appendLine ( '</tbody></table>' ) ;
703+ content . append ( '</div>' ) ;
701704return content . toString ( ) ;
702705}
703706