-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
ShowConnections: Cap max number of connections displayed #3156
base: dev
Are you sure you want to change the base?
Conversation
@@ -57,6 +58,11 @@ const settings = definePluginSettings({ | |||
{ label: "Cozy", value: Spacing.COZY }, // US Spelling :/ | |||
{ label: "Roomy", value: Spacing.ROOMY } | |||
] | |||
}, | |||
maxNumberOfConnections: { | |||
type: OptionType.NUMBER, |
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.
slider would be better. just do 5-50
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.
a slider doesn't work due to the fact that the size of the icons is customizable, leading to a multiple of seven -1 not always being the ideal number for an even row
const profile = UserProfileStore.getUserProfile(id); | ||
const profile: Partial<UserProfile> = UserProfileStore.getUserProfile(id) ?? {}; |
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.
not sure what the point of this is in the first place, so not sure if this is the best/correct fix
No description provided.