Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add region and public ip to peer table and detailed peer view #340

Merged
merged 53 commits into from
Feb 23, 2024
Merged
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
7c8cb65
Init Dashboard V2
heisbrot Jan 29, 2024
0695d44
Update README.md
heisbrot Jan 29, 2024
ea4a207
use dedicated var and prevent push on PRs
mlsmaycon Jan 29, 2024
dbd3feb
Fix redirect link to event streaming docs
heisbrot Feb 1, 2024
54e66d4
Add iOS operating system icon
heisbrot Feb 2, 2024
90d80c3
Refactor
heisbrot Feb 2, 2024
879d24d
Add autocomplete input
heisbrot Feb 2, 2024
dda557c
Use idtoken source for token
heisbrot Feb 2, 2024
877c0d1
Add posture check modal with checks
heisbrot Feb 2, 2024
707ada6
Fix peer last seen in detail view
heisbrot Feb 6, 2024
b6a777a
Fix last seen date of user
heisbrot Feb 6, 2024
b980047
Add sliding tabs ui component
heisbrot Feb 6, 2024
a819510
Add posture check ui cards
heisbrot Feb 6, 2024
7b27112
Add draft for operating system check ui
heisbrot Feb 8, 2024
9c3b0cb
Add better ui for locations
heisbrot Feb 9, 2024
7169d52
Add better ui for os check
heisbrot Feb 12, 2024
117057d
Merge branch 'main' into feature/posture-checks
heisbrot Feb 12, 2024
22e94a4
Add create posture checks, add select posture check (draft)
heisbrot Feb 13, 2024
6a634fe
Add posture check selection
heisbrot Feb 13, 2024
153a37c
Update posture checks selection modal
heisbrot Feb 13, 2024
a22e800
Add radix radio group
heisbrot Feb 13, 2024
7639f56
Add edit and browse posture checks
heisbrot Feb 14, 2024
ef4f08a
Add posture check cell to access control
heisbrot Feb 14, 2024
0ead53e
Optimize select dropdown performance
heisbrot Feb 14, 2024
e7cb586
Add posture check page
heisbrot Feb 16, 2024
00ff4a9
Update workflow
heisbrot Feb 16, 2024
fe40a5e
Merge branch 'main' into feature/posture-checks
heisbrot Feb 16, 2024
2b79496
Return no results if source_posture_checks is undefined
heisbrot Feb 16, 2024
433bae0
Add flag icons
heisbrot Feb 16, 2024
f1cd664
Add loading indicator and fix some ui issues
heisbrot Feb 16, 2024
085662c
Add loading indicator for country and cities
heisbrot Feb 16, 2024
d70e873
Disable select dropdown while loading
heisbrot Feb 16, 2024
c5564c3
Disable select dropdown while loading, add tooltip for description
heisbrot Feb 16, 2024
3a5799b
Merge branch 'main' into feature/posture-checks
heisbrot Feb 16, 2024
9392e32
Add MaxMind licence information and refactor code
heisbrot Feb 19, 2024
eae8249
Add tooltips for checks, refactor posture check modal
heisbrot Feb 20, 2024
67896ca
Remove unused state
heisbrot Feb 20, 2024
f1b84e6
Disable delete button when posture check is assigned to policies
heisbrot Feb 21, 2024
97e6bac
Add semantic version input validation for operating-system and netbir…
heisbrot Feb 21, 2024
40b6f89
Restore build_and_push.yml
heisbrot Feb 21, 2024
d7fe14f
Fix group badge icon size
heisbrot Feb 22, 2024
cb1d6ce
Fix copy icon size
heisbrot Feb 22, 2024
771dd27
Add region information to peer table and single peer view
heisbrot Feb 22, 2024
d059b77
Merge branch 'main' into feature/peer-region
heisbrot Feb 22, 2024
a2308be
Push to docker
heisbrot Feb 22, 2024
303d2d6
Change login expired icon size
heisbrot Feb 23, 2024
5b114b9
Fix country flag in single peer view
heisbrot Feb 23, 2024
8d74504
Change country flag size in peer table
heisbrot Feb 23, 2024
a6ca799
Disable revalidation for countries
heisbrot Feb 23, 2024
ac6e9b9
Fix icon size on peer detail view
heisbrot Feb 23, 2024
ad5630c
Rollback workflow
heisbrot Feb 23, 2024
d581127
Merge branch 'main' into feature/peer-region
heisbrot Feb 23, 2024
98ba1c6
Revert login expiration
heisbrot Feb 23, 2024
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
Prev Previous commit
Next Next commit
Restore build_and_push.yml
  • Loading branch information
heisbrot committed Feb 21, 2024
commit 40b6f89e64dd1b8702d512fb9ec42bf230017408
10 changes: 5 additions & 5 deletions .github/workflows/build_and_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: build and push
on:
push:
branches:
- feature/posture-checks
- main
tags:
- "**"
pull_request:
Expand All @@ -27,12 +27,12 @@ jobs:

- run: echo '{}' > .local-config.json

- name: Build
- name: Build
run: npm run build
-
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
Expand All @@ -54,7 +54,7 @@ jobs:
with:
context: .
file: docker/Dockerfile
push: true
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64,linux/arm
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Loading