Skip to content

Commit

Permalink
Merge pull request #786 from digitallyinduced/columns-view
Browse files Browse the repository at this point in the history
DevServer Columns View
  • Loading branch information
mpscholten authored Feb 26, 2021
2 parents 1608fce + e611536 commit 883cf75
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions IHP/IDE/SchemaDesigner/View/Layout.hs
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ visualNav =

renderColumnSelector :: Text -> [(Int, Column)] -> [Statement] -> Html
renderColumnSelector tableName columns statements = [hsx|
<div class="col-8 column-selector">
<section oncontextmenu="showContextMenu('context-menu-column-root')">
<div class="d-flex">
<div class="col-8 column-selector d-flex">
<section class="flex-grow-1" oncontextmenu="showContextMenu('context-menu-column-root')">
<div>
<h5>Columns</h5>
</div>
<table class="table table-hover table-sm">
Expand All @@ -120,7 +120,7 @@ renderColumnSelector tableName columns statements = [hsx|
columnIndexes =
case findTableIndex statements tableName of
Just _ -> [hsx|
<div class="d-flex">
<div>
<h5>Indexes</h5>
</div>
<table class="table table-hover table-sm">
Expand Down

0 comments on commit 883cf75

Please sign in to comment.