fix(web/default): batch fix new UI issues #4880 #4893 #4817 #4877 #4898

- Add singleSelect to status/role filters in API keys, users, and redemptions tables (#4880)
- Fix affiliate link 404 by changing /register to /sign-up (#4893)
- Open FetchModelsDialog in channel creation mode via customFetcher prop (#4817)
- Add TruncatedText component with tooltip for long channel names, token names, and usernames (#4877)
- Elevate forgot-password link z-index to prevent label click interception (#4898)
This commit is contained in:
CaIon
2026-05-16 14:48:49 +08:00
parent 18282e610d
commit 3caa6e467b
10 changed files with 158 additions and 86 deletions
+1 -1
View File
@@ -25,5 +25,5 @@ For commercial licensing, please contact support@quantumnous.com
*/
export function generateAffiliateLink(affCode: string): string {
if (typeof window === 'undefined') return ''
return `${window.location.origin}/register?aff=${affCode}`
return `${window.location.origin}/sign-up?aff=${affCode}`
}