Skip to content

Commit

Permalink
read only
Browse files Browse the repository at this point in the history
  • Loading branch information
sinamics committed Apr 6, 2023
1 parent 4bc8930 commit b403dd4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ jobs:
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'alfa') }}
automatic_release_tag: ${{ github.event.inputs.version || steps.previoustag.outputs.tag }}
title: ${{ steps.previoustag.outputs.tag }}
files: |
LICENSE
README.md
# prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'alfa') }}
# automatic_release_tag: ${{ github.event.inputs.version || steps.previoustag.outputs.tag }}
# title: ${{ steps.previoustag.outputs.tag }}
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ services:
platform: "linux/amd64"
working_dir: /app
volumes:
- zerotier:/var/lib/zerotier-one
- zerotier:/var/lib/zerotier-one:ro
restart: unless-stopped
ports:
- 3000:3000
Expand Down
4 changes: 2 additions & 2 deletions src/components/elements/inputField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ const InputField = ({
) : (
<dd className="mt-1 flex items-center gap-2 text-sm">
{placeholder ?? fields[0].placeholder}
{badge && (
{badge ? (
<div className={`badge badge-${badge.color}`}>{badge.text}</div>
)}
) : null}
</dd>
)}
</>
Expand Down

0 comments on commit b403dd4

Please sign in to comment.