Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bin/dev
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi
if command -v docker &> /dev/null
then
echo "Running trmnl/trmnlp container..."
docker run -p 4567:4567 -v .:/plugin trmnl/trmnlp
docker run -p 4567:4567 -v .:/plugin --env-file=.env trmnl/trmnlp serve
exit
fi

Expand All @@ -22,4 +22,4 @@ Or install Docker:

https://docs.docker.com/get-docker/"

exit 1
exit 1
2 changes: 1 addition & 1 deletion src/shared.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<div class="item">
<div class="meta"></div>
<div class="content gap--xsmall">
<div class="label label--small label--underline">{{ device.hostname }}</div>
<div class="label label--small label--underline">{{ device.name | split: "." | first }}</div>
<div class="label label--small label--outline">{{ device.addresses.first }}</div>
{% if time_diff <= 1800 %}
<div class="label label--small">✓ Online{%- if device.updateAvailable %} • Update available!{% endif %}</div>
Expand Down