Skip to content

Commit

Permalink
remove app horizontal scolling to fix display bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kendavis2 committed Aug 11, 2020
1 parent 5019629 commit 9aad496
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 11 deletions.
6 changes: 3 additions & 3 deletions docs/UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

If running version >= **v0.30.0-rc**, follow these steps to upgrade uDeploy.

### LATEST: v0.33.1-rc
### LATEST: v0.33.2-rc

1. Update configuration.

Expand Down Expand Up @@ -49,14 +49,14 @@ provider "aws" {
}
module “prod” {
source = "github.com/turnerlabs/udeploy//infrastructure/modules/portal?ref=v0.33.1-rc"
source = "github.com/turnerlabs/udeploy//infrastructure/modules/portal?ref=v0.33.2-rc"
}
```

`infrastructure/portals/prod/terraform.tfvars`

```
image = "quay.io/turner/udeploy:v0.33.1-rc.17"
image = "quay.io/turner/udeploy:v0.33.2-rc.18"
```

4. Apply changes.
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/modules/portal/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ variable "record_name" {
}

variable "image" {
default = "quay.io/turner/udeploy:v0.33.1-rc.17"
default = "quay.io/turner/udeploy:v0.33.2-rc.18"
}

# Allow other AWS accounts to publish events
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/portals/prod/atlas.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ variable "app_user_database" {}
variable "ip_whitelist" {}

module "env" {
source = "github.com/turnerlabs/udeploy//infrastructure/modules/atlas?ref=v0.33.1-rc"
source = "github.com/turnerlabs/udeploy//infrastructure/modules/atlas?ref=v0.33.2-rc"

mongodbatlas_public_key = var.mongodbatlas_public_key

Expand Down
2 changes: 1 addition & 1 deletion infrastructure/portals/prod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ provider "aws" {
}

module "env" {
source = "github.com/turnerlabs/udeploy//infrastructure/modules/portal?ref=v0.33.1-rc"
source = "github.com/turnerlabs/udeploy//infrastructure/modules/portal?ref=v0.33.2-rc"

region = var.region
aws_profile = var.aws_profile
Expand Down
4 changes: 0 additions & 4 deletions vue/pages/apps/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
width: 100%;
}

.app-row {
overflow-x: auto;
}

.instance {
height: 200px;
}
Expand Down
2 changes: 1 addition & 1 deletion vue/pages/apps/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
</div>
</div>
</div>
<div class="tile app-row">
<div class="tile">
<div v-for="inst in sortInstances(app.instances)" class="tile is-parent is-2">
<div class="tile is-child">
<p class="has-text-weight-bold">{{ inst.name.toUpperCase() }}</p>
Expand Down

0 comments on commit 9aad496

Please sign in to comment.