Skip to content

Commit

Permalink
Merge pull request buildingSMART#28 from civilx64/fix/before-redeploy
Browse files Browse the repository at this point in the history
minor fixes before redploying
  • Loading branch information
civilx64 authored Mar 8, 2024
2 parents 161092c + ea7dde8 commit 1bf5eb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docker/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ RUN set -ex && \
apt-get -y install --no-install-recommends --no-install-suggests \
python3-dev \
git \
unzip \
wget \
&& \
update-ca-certificates -f && \
# cleanup
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/GherkinResult2.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function GherkinResult2({ summary, content, status, instances })
container.feature_version = el.feature_version;
container.feature_url = el.feature_url;
container.feature_text = el.feature_text;
container.observed = el.expected ? el.expected : '-';
container.observed = el.observed ? el.observed : '-';
container.expected = el.expected ? el.expected : '-';
container.severity = el.severity;
container.msg = el.msg;
Expand Down

0 comments on commit 1bf5eb2

Please sign in to comment.