allow directly editing items from the profile selector - fixes #6039

This commit is contained in:
Eugene Pankov
2022-04-15 19:45:30 +02:00
parent 358a7563f6
commit 7016688170
6 changed files with 36 additions and 3 deletions

View File

@@ -56,5 +56,9 @@ export abstract class ProfileProvider<P extends Profile> {
return null
}
intoQuickConnectString (profile: P): string|null {
return null
}
deleteProfile (profile: P): void { }
}

View File

@@ -5,6 +5,7 @@ export interface SelectorOption<T> {
result?: T
icon?: string
freeInputPattern?: string
freeInputEquivalent?: string
color?: string
weight?: number
callback?: (string?) => void