memos
memos copied to clipboard
Memos Instance Missing List of Access Tokens
Describe the bug
The list of access tokens available is not shown after building the latest commit. When creating a new access token, the API to create/list the tokens are called but isn't displayed in the UI:
https://{host}/memos.api.v2.UserService/ListUserAccessTokens
https://{host}/memos.api.v2.UserService/CreateUserAccessToken
Both API requests above show a POST 200 in the logs but access tokens aren't shown.
Steps to reproduce
- Log into your Memos instance with "Remember Me"
- Navigate to settings > my account
- List of Access Tokens is now empty
- Create an access token
- New access token isn't displayed after creation
The version of Memos you're using
v0.18.1 (latest commit)
Screenshots or additional context
No response
Found that the members list is also empty:
Closing bc it’s a non issue. This was due to a custom CSS enabled which was used to hide the tags inside of memos:
.inline-block {
display: none;
}
Having this also hid the list for members/access tokens. After removing, the list of members/access tokens are able to be viewed (tag in memos show though).