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

Improvements of Dashboard #848

Merged
merged 34 commits into from
Jul 2, 2024
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
7283ed9
Be able to set the size of charactor in NameAvator
jlandowner Jun 25, 2024
a8924f6
Select user via URL param
jlandowner Jun 25, 2024
d426917
EventsDataGrid: change onRowClick -> onRowDoubleClick
jlandowner Jun 25, 2024
f2d30aa
YAMLTextArea: show indent line
jlandowner Jun 25, 2024
7eb8db8
WorkspacePage: Refactoring
jlandowner Jun 25, 2024
1161fab
UserPage and PageTemplate: Refactoring
jlandowner Jun 25, 2024
9a18a94
UserPage: not show roles when is up sm
jlandowner Jun 25, 2024
1b348c6
Fix: UserInfoDialog crush when opened by User Icon in appbar
jlandowner Jun 25, 2024
786ca35
PageTemplate: Refactoring NameAvator size
jlandowner Jun 25, 2024
777da93
NameAvator: Refactoring props and color
jlandowner Jun 26, 2024
53751c2
YAMLTextArea: clipboard button position
jlandowner Jun 26, 2024
08f1b3a
SearchTextField: new common component and update search logic
jlandowner Jun 26, 2024
14ad64d
Show instance related Users and Workspaces on UI
jlandowner Jun 27, 2024
2011bf2
UserPage: setMask when getting users
jlandowner Jun 27, 2024
b451b65
UserPage: Add open events and workspaces menu items
jlandowner Jun 27, 2024
9816ad2
YAMLDialogs: Remove Close button
jlandowner Jun 27, 2024
da4b861
UserModule: remove redundant try-catch
jlandowner Jun 27, 2024
812a203
UserModule: Add fetching Users after addon updated
jlandowner Jun 27, 2024
d115f1a
UserPage: change role color
jlandowner Jun 27, 2024
0a310ee
WorkspaceDataGrid on UserInfoDialog
jlandowner Jun 27, 2024
1db2abf
Server: update user authentication
jlandowner Jun 27, 2024
c96692d
Update authorizations
jlandowner Jun 28, 2024
db90977
UserPage: dots on list addons
jlandowner Jun 28, 2024
74ec7e2
WorkspacePage: disable showing yaml for readonly workspace
jlandowner Jun 28, 2024
5a0eaa9
Pages: same styles for search headers
jlandowner Jun 28, 2024
2930ff7
WorkspacePage: fix bug not show shared workspace when the same name w…
jlandowner Jun 28, 2024
4819bf1
Dialog: Refacter clickaway(enable only for info and delete dialog)
jlandowner Jun 29, 2024
8cbfd5d
EventDataGrid: revert eventDetailDialogDispatch onRowClick
jlandowner Jun 29, 2024
d2b94e1
TemplatePage: Add template page
jlandowner Jul 1, 2024
ef96136
TemplatePage: show useraddon list for only admin uers
jlandowner Jul 1, 2024
19ccce4
WorkspaceCreateDialog: fix not to show template which user cannot hav…
jlandowner Jul 1, 2024
dd991ab
SelectRolesForm: the same design as add allowed users
jlandowner Jul 1, 2024
1921979
UserAddonForm: Add validation that required addons are enabled
jlandowner Jul 1, 2024
8420cda
TemplatePage: Fix WIP menu
jlandowner Jul 1, 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
EventsDataGrid: change onRowClick -> onRowDoubleClick
jlandowner committed Jun 29, 2024
commit d42691787cc7c3b45170d47ee0a020e1847e7f0a
2 changes: 1 addition & 1 deletion web/dashboard-ui/src/views/atoms/EventsDataGrid.tsx
Original file line number Diff line number Diff line change
@@ -87,7 +87,7 @@ export const EventsDataGrid: React.FC<EventsDataGridProp> = ({
},
...sx,
}}
onRowClick={(params) => {
onRowDoubleClick={(params) => {
eventDetailDialogDispatch(true, { event: params.row });
}}
hideFooter