-
Notifications
You must be signed in to change notification settings - Fork 189
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
Streamline menus #656
Streamline menus #656
Changes from all commits
de1faa7
b94dacf
4a3c6bc
e51f6d9
a46c127
2f572ad
42e51e4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,8 @@ const navItems = [ | |
route: { | ||
name: 'accounts', | ||
path: `/${appInfo.id}/` | ||
} | ||
}, | ||
menu: 'user' | ||
} | ||
] | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Change: Accounts UI shows message when no permissions | ||
|
||
We improved the UX of the accounts UI by showing a message information the user about missing permissions when the accounts or roles fail to load. This was showing an indeterminate progress bar before. | ||
|
||
https://github.com/owncloud/ocis/pull/656 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Change: Settings and accounts appear in the user menu | ||
|
||
We moved settings and accounts to the user menu. | ||
|
||
https://github.com/owncloud/ocis/pull/656 |
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,14 +70,14 @@ func (p Phoenix) getPayload() (payload []byte, err error) { | |
|
||
if p.config.Phoenix.Config.ExternalApps == nil { | ||
p.config.Phoenix.Config.ExternalApps = []config.ExternalApp{ | ||
{ | ||
ID: "accounts", | ||
Path: "/accounts.js", | ||
}, | ||
{ | ||
ID: "settings", | ||
Path: "/settings.js", | ||
}, | ||
{ | ||
ID: "accounts", | ||
Path: "/accounts.js", | ||
}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I changed the order because it is the order in which the navItems are rendered in the respective menu. We want to settings navItem first after the Profile navItem. |
||
} | ||
} | ||
|
||
|
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,8 @@ const navItems = [ | |
route: { | ||
name: 'settings', | ||
path: `/${appInfo.id}/` | ||
} | ||
}, | ||
menu: 'user' | ||
} | ||
] | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just fixing incorrect indentation here.