Fix padding at no schema sources

This commit is contained in:
Zsolt Kocsmarszky 2017-11-26 16:51:08 +01:00
parent 0a6fc27fdd
commit 89592d3e80
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@
on-refresh="refreshSchema()"
ng-show="hasSchema">
</schema-browser>
</div>
</div>
<!-- end of editor -->

View File

@ -46,7 +46,7 @@ function QueryViewCtrl(
function toggleSchemaBrowser(hasSchema) {
$scope.hasSchema = hasSchema;
$scope.editorSize = hasSchema ? 'col-md-9 p-l-0' : 'col-md-12';
$scope.editorSize = hasSchema ? 'col-md-9 p-l-0' : 'col-md-12 p-l-0 p-r-0';
}
function getSchema(refresh = undefined) {