mirror of
https://github.com/fleetdm/fleet
synced 2026-05-05 14:28:46 +00:00
* state of device management page, chart component * add images * website: add charts.min.js, update layout, page script, and images * layout updates, component validation * add alt text, lint fixes * update image name * update bar-chart styles and layout * add empty href and link styles * Style overrides for mobile & tablet • Added style overrides for mobile and tablet. * Updated text Updated text for the following sections: • Introduction • Key findings • Part 1 * Updated text Updated text in the following sections: • Part 2 • Part 3 • Part 4 • Part 5 • Part 6 * Additional icon and text change • Added icon for GitOps • Repositioned text: The future of device management * Text change Removed "Takeaways" header from Part 6. * style changes • fixed some inconsistent headers (h3 to h2). • fixed margin bottom on new GitOps note. • Removed unneeded subsection div after removing "Takeaways" heading in my previous commit. * update chart styles, add update charts function, sticky navigation * lint fix * lint fix * Scroll navigation with header * text changes Updated chart titles to match the survey. * style tweaks Style tweaks to the charts. * add pdf Co-authored-by: Mike Thomas <[email protected]>
27 lines
323 B
JavaScript
Vendored
27 lines
323 B
JavaScript
Vendored
module.exports = {
|
|
|
|
|
|
friendlyName: 'View state of device management',
|
|
|
|
|
|
description: 'Display "State of device management" page.',
|
|
|
|
|
|
exits: {
|
|
|
|
success: {
|
|
viewTemplatePath: 'pages/reports/state-of-device-management'
|
|
}
|
|
|
|
},
|
|
|
|
|
|
fn: async function () {
|
|
|
|
// Respond with view.
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
};
|