Skip to content
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.

Commit

Permalink
fix bug in first run page
Browse files Browse the repository at this point in the history
  • Loading branch information
monty5811 committed Sep 13, 2017
1 parent c07b8a9 commit 43a316c
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [v.2.5.2]

### Fixed

- Fix bug in first run page

## [v.2.5.1]

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.1
2.5.2
2 changes: 1 addition & 1 deletion ansible/env_vars/base.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---

git_repo: https://github.com/monty5811/apostello.git
git_version: v2.5.1
git_version: v2.5.2

project_name: apostello
application_name: apostello
Expand Down
2 changes: 1 addition & 1 deletion apostello/static/js/app.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion assets/js/render_elm.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ function renderElm() {
});

const loader = document.getElementById('elmLoader');
loader.remove();
if (loader !== null) {
loader.remove();
}

return app;
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/ansible_install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e
# setup some constants
AP_VER=v2.5.1
AP_VER=v2.5.2
REPO_URL=https://github.com/monty5811/apostello.git
HOME_DIR=/home/apostello
CUSTOM_VARS_FILE=$HOME_DIR/custom_vars.yml
Expand Down

0 comments on commit 43a316c

Please sign in to comment.