fix eventname not changable close #33
This commit is contained in:
@@ -306,6 +306,11 @@ export function useMemberTable() {
|
||||
if (typeof value === 'number') {
|
||||
return keys.includes(value.toString());
|
||||
}
|
||||
if (typeof value === 'object') {
|
||||
if ('name' in value) {
|
||||
return keys.includes(value.name);
|
||||
}
|
||||
}
|
||||
if (typeof value === 'string') {
|
||||
return keys.includes(value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user