fix: 감찰부 장수 변경시 tooltip 빈칸 버그

This commit is contained in:
2022-07-26 23:56:50 +09:00
parent 897780cf1c
commit 308b1f2348
2 changed files with 64 additions and 34 deletions
+6
View File
@@ -0,0 +1,6 @@
export function isValidObjKey<T>(key: T|'None'|undefined|null): boolean{
if(key === 'None' || key === undefined || key === null){
return false;
}
return true;
}