Last active
June 25, 2019 19:31
-
-
Save mrDarcyMurphy/7ab6398b71ca82f723e96057abbfe17b to your computer and use it in GitHub Desktop.
Edge &
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Edge & | |
Navigation | |
click workspaces -> AdminWorkspaces | |
click reports -> AdminReports | |
click filters -> AdminFilters | |
click users -> AdminUsers | |
Content | |
Workspace | |
Report List | |
Report | |
Admin* | |
PowerBIAdmin* | |
AdminWorkspaces* | |
AdminReports | |
AdminFilters | |
AdminUsers | |
SystemAdmin | |
OnboardExternalUsers | |
MapInternalUsersToOktaGroups |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function list(name) { | |
return $('li', name) | |
} | |
function render(model){ | |
let current_state_name = model.active_states[0].name; | |
let names = model.active_states.map(state => $('li', state.name)); | |
// return $("h1", {style: {color: "darkBlue"}}, `The current state is: ${current_state_name}`); | |
return $("h1", | |
`The current state is: ${current_state_name}`, | |
$('ul', names) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment