Gabriel Hernandez
a292e704de
add startup assistant to the UI ( #17731 )
...
relates to #9147
add the setup assistant page to the UI. This includes:
- new setup assistant page
- uploaded profile and release device manually form
- preview for setup assistant flow
<!-- Note that API documentation changes are now addressed by the
product design team. -->
- [x] Changes file added for user-visible changes in `changes/` or
`orbit/changes/`.
See [Changes
files](https://fleetdm.com/docs/contributing/committing-changes#changes-files )
for more information.
- [x] Added/updated tests
- [x] Manual QA for all new/changed functionality
---------
Co-authored-by: Martin Angers <martin.n.angers@gmail.com>
2024-03-26 14:46:33 +00:00
RachelElysia
4345690dd2
Fleet UI: Update displayed data on device details pages ( #17174 )
2024-03-04 15:47:42 -05:00
Jacob Shandling
b9fc6968a5
UI – Vulnerability details page ( #16665 )
...
### _Draft until available to address feedback and merge on Monday –
ready for review_
## Addresses #16472
- Full accounting of features in linked ticket
<img width="1676" alt="Screenshot 2024-02-07 at 10 24 03 PM"
src="https://github.com/fleetdm/fleet/assets/61553566/aa0cd3b5-9191-4078-b57c-ee451dc5c632 ">
<img width="909" alt="Screenshot 2024-02-07 at 10 38 52 PM"
src="https://github.com/fleetdm/fleet/assets/61553566/ea1b0067-bb91-4502-bde0-0e36914a0829 ">
## Checklist for submitter
- [x] Manual QA for all new/changed functionality
---------
Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
2024-02-15 10:35:06 -07:00
Roberto Dip
9ffa11c25d
Feat: saved scripts ( #14409 )
...
For #9537
2023-10-10 19:00:45 -03:00
Gabriel Hernandez
0f02fa012e
create a reusable UI card component ( #12455 )
...
I notices we were reusing styles alot for the card like container UI so
I created a reusable `Card` component
The component is used like this:
```tsx
// default card is white background
<Card>
<p>whatever JSX you want</p>
</Card>
<Card color="gray">
<p>whatever JSX you want</p>
</Card>
<Card color="yellow">
<p>whatever JSX you want</p>
</Card>
<Card color="purple">
<p>whatever JSX you want</p>
</Card>
```
**white**

**gray**

**yellow**

**purple**

- [x] Manual QA for all new/changed functionality
2023-06-26 16:33:46 +01:00